結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
もぐら 3.0
|
| 提出日時 | 2023-11-15 18:46:41 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 130 bytes |
| 記録 | |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 96,080 KB |
| 実行使用メモリ | 91,008 KB |
| 最終ジャッジ日時 | 2026-09-04 14:26:47 |
| 合計ジャッジ時間 | 3,737 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 RE * 4 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
cnt=0
for i in range(101):
if (sum(A)+i)%N==0:
cnt+=1
print(cnt)
もぐら 3.0