#ABC151B. Achieve the Goal

Achieve the Goal

题目描述

Takahashi is taking exams on NN subjects. The score on each subject will be an integer between 00 and KK (inclusive).

He has already taken exams on N1N-1 subjects and scored AiA_i points on the ii-th subject.

His goal is to achieve the average score of MM points or above on the NN subjects.

Print the minimum number of points Takahashi needs on the final subject to achieve his goal.

If the goal is unachievable, print -1 instead.

高桥正在参加 NN 科目的考试。每个科目的分数都是介于 00KK 之间的整数。

他已经参加了 N1N-1 个科目的考试,并在 ii 个科目上得到了 AiA_i 分。

他的目标是在 NN 个科目上取得 MM 分或以上的平均分。

请打印高桥在最后一科上实现目标所需的最低分数。

如果目标无法实现,则打印"-1"。

输入格式

输入内容按以下格式标准输入:

NN KK MM
A1A_1 A2A_2 ...... AN1A_{N-1}

输出格式

打印最终科目所需的最低分数,或 -1

样例 #1

样例输入 #1

5 10 7
8 10 3 6

样例输出 #1

8

样例 #2

样例输入 #2

4 100 60
100 100 100

样例输出 #2

0

样例 #3

样例输入 #3

4 100 60
0 0 0

样例输出 #3

-1

说明

数据规模与约定

  • 2N1002 \leq N \leq 100
  • 1K1001 \leq K \leq 100
  • 1MK1 \leq M \leq K
  • 0AiK0 \leq A_i \leq K
  • 所有输入值均为整数。

样例 11 解释

如果他最后一科得了 88 分,那么他的平均分就是 (8+10+3+6+8)/5=7(8+10+3+6+8)/5 = 7 分,达到了目标。

样例 22 解释

最终题目得分 00 分,仍能达到目标。

样例 33 解释

他再也无法实现目标了。