100 atcoder#ABC103C. [ABC103C] Modulo Summation
[ABC103C] Modulo Summation
Score : points
Problem Statement
You are given positive integers .
For a non-negative integer , let $f(m) = (m\ mod\ a_1) + (m\ mod\ a_2) + ... + (m\ mod\ a_N)$.
Here, denotes the remainder of the division of by .
Find the maximum value of .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum value of .
3
3 4 6
10
$f(11) = (11\ mod\ 3) + (11\ mod\ 4) + (11\ mod\ 6) = 10$ is the maximum value of .
5
7 46 11 20 11
90
7
994 518 941 851 647 2 581
4527