B - Nuts
Editorial
/
Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 200 点
問題文
N 本の木があり、 i 番目の木には A_i 個の木の実が実っています。
シマリスは、次のルールで全ての木から木の実を収穫します。
- 実っている木の実が 10 個以下の木からは木の実を収穫しない
- 実っている木の実が 10 個より多い木からは、10 個を残して残りの全てを収穫する
シマリスが収穫する木の実の個数の合計を求めてください。
制約
- 1 \leq N \leq 1000
- 0 \leq A_i \leq 1000
- 入力に含まれる値は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
N A_1 \ldots A_N
出力
答えを出力せよ。
入力例 1
3 6 17 28
出力例 1
25
3 本の木からそれぞれ 0,7,18 個の木の実を収穫します。よって合計は 25 個です。
入力例 2
4 8 9 10 11
出力例 2
1
Score : 200 points
Problem Statement
There are N trees. The i-th tree bears A_i nuts.
Chipmunk will harvest nuts from the trees in the following manner:
- From a tree with 10 or fewer nuts, she does not take nuts.
- From a tree with more than 10 nuts, she takes all but 10 nuts.
Find the total number of nuts Chipmunk will take from the trees.
Constraints
- 1 \leq N \leq 1000
- 0 \leq A_i \leq 1000
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
N A_1 \ldots A_N
Output
Print the answer.
Sample Input 1
3 6 17 28
Sample Output 1
25
From the three trees, Chipmunk will take 0, 7, and 18 nuts, for a total of 25 nuts.
Sample Input 2
4 8 9 10 11
Sample Output 2
1