A1558.[COCI-2016_2017-contest1]#5 Tarifa

提高+/省选-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Pero has negotiated a Very Good data plan with his internet provider. The provider will let Pero use up X megabytes to surf the internet per month. Each megabyte that he doesn’t spend in that month gets transferred to the next month and can still be spent. Of course, Pero can only spend the megabytes he actually has.
If we know how much megabytes Pero has spent in each of the first N months of using the plan, determine how many megabytes Pero will have available in the N + 1 month of using the plan.

输入格式

The first line of input contains the integer X (1 ≤ X ≤ 100).
The second line of input contains the integer N ​(1 ≤ N ≤ 100).
Each of the following N lines contains an integer Pi(0 ≤ Pi ≤ 10 000), the number of megabytes spent in each of the first N months of using the plan. Numbers Pi will be such that Pero will never use more megabytes than he actually has.

输出格式

The first and only line of output must contain the required value from the task.

输入输出样例

  • 输入#1

    10 
    3 
    4 
    6 
    2

    输出#1

    28
  • 输入#2

    10 
    3 
    10 
    2 
    12

    输出#2

    16
  • 输入#3

    15 
    3 
    15 
    10 
    20

    输出#3

    15

说明/提示

In the first month, out of 10 total megabytes, Pero has spent 4 and transferred 6 into the next month. In
the second month, out of 16 (10+6) total megabytes, Pero has spent 6 and transferred 10. In the third
month, out of 20 (10+10) total megabytes, Pero has spent 2 and transferred 18. In the fourth month, he
had a total of 28 megabytes to spend.

首页