#B. C - Modulo Summation

    传统题 1000ms 256MiB

C - Modulo Summation

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Modulo Summation

Score : $300$ points

Problem Statement

You are given $N$ positive integers $a_1, a_2, ..., a_N$.

For a non-negative integer $m$, let $f(m) = (m\ mod\ a_1) + (m\ mod\ a_2) + ... + (m\ mod\ a_N)$.

Here, $X\ mod\ Y$ denotes the remainder of the division of $X$ by $Y$.

Find the maximum value of $f$.

Constraints

  • All values in input are integers.
  • $2 \leq N \leq 3000$
  • $2 \leq a_i \leq 10^5$

Input

Input is given from Standard Input in the following format:

NN

a1a_1 a2a_2 ...... aNa_N

Output

Print the maximum value of $f$.


3
3 4 6
10

$f(11) = (11\ mod\ 3) + (11\ mod\ 4) + (11\ mod\ 6) = 10$ is the maximum value of $f$.


5
7 46 11 20 11
90

7
994 518 941 851 647 2 581
4527

2024寒假入门组刷题营(十)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-7 13:30
结束于
2024-2-7 15:30
持续时间
2 小时
主持人
参赛人数
10