| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 2 초 | 1024 MB | 133 | 65 | 54 | 49.091% |
Bessie has woken up on a strange planet. In this planet, there are $N$ (1ドル\le N\le 10^4$) months, with $a_1, \ldots, a_N$ days, respectively (1ドル\leq a_i \leq 4 \cdot 10^9,ドル all $a_i$ are integers). In addition, on the planet, there are also weeks, where each week is $L$ days, with $L$ being a positive integer. Interestingly, Bessie knows the following:
Unfortunately, Bessie has forgotten what $L$ is! Help her by printing the sum of all possible values of $L$.
Note that the large size of integers involved in this problem may require the use of 64-bit integer data types (e.g., a "long long" in C/C++).
The first line contains a single integer $N$. The second line contains $N$ space-separated integers, $a_1, \ldots, a_N$.
A single integer, the sum of all possible values of $L$.
12 31 28 31 30 31 30 31 31 30 31 30 31
28
The possible values of $L$ are 1, 2, 3, 4, 5, 6, and 7. For example, $L=7$ is valid because each month is at least length 4ドル \cdot 7 = 28$ days long, and each month is either 0, 2, or 3 mod 7.
4 31 35 28 29
23
The possible values of $L$ are 1, 2, 3, 4, 6, and 7. For example, $L=6$ is valid because each month is at least length 4ドル \cdot 6 = 24$ days long, and each month is either 1, 4, or 5 mod 6.