結果
問題 | No.1406 Test |
ユーザー |
![]() |
提出日時 | 2021-02-26 21:28:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 255 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-10-02 14:00:13 |
合計ジャッジ時間 | 1,872 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
n = int(input())if n == 1:print(101)exit()a = list(map(int, input().split()))sm = 0for i in range(n - 1):sm += a[i]count = 0for i in range(101):added = sm + iif added // n * n == added:count += 1print(count)