結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-26 21:22:20 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 24 ms / 2,000 ms |
| + 592µs | |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 70 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 54,272 KB |
| 最終ジャッジ日時 | 2026-09-09 00:14:17 |
| 合計ジャッジ時間 | 2,163 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
N=int(input())
if N==1:
print(101)
else:
A=list(map(int, input().split()))
S=sum(A)
cnt=0
for p in range(100):
x=p*N-S
if 0<=x<=100:
cnt+=1
print(cnt)