結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-12 16:45:59 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 212 bytes |
| 記録 | |
| コンパイル時間 | 345 ms |
| コンパイル使用メモリ | 20,576 KB |
| 実行使用メモリ | 20,568 KB |
| 最終ジャッジ日時 | 2026-04-04 10:50:52 |
| 合計ジャッジ時間 | 4,396 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 RE * 4 |
ソースコード
def main():
N = int(input())
A = sum(map(int, input().split()))
ans = 0
for i in range(101):
if (A+i) % N == 0:
ans += 1
print(ans)
if __name__ == '__main__':
main()