結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
Somtk_42
|
| 提出日時 | 2021-02-26 21:31:56 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 142 bytes |
| 記録 | |
| コンパイル時間 | 371 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-04-18 23:40:57 |
| 合計ジャッジ時間 | 6,160 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 RE * 4 |
ソースコード
n = int(input())
a = list(map(int, input().split()))
s = sum(a)
ans = 0
for i in range(101):
if (s+i)/n == (s+i)//n:
ans += 1
print(ans)
Somtk_42