結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
anagohirame
|
| 提出日時 | 2021-02-26 21:48:20 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 25 ms / 2,000 ms |
| + 86µs | |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 64 ms |
| コンパイル使用メモリ | 82,516 KB |
| 実行使用メモリ | 56,108 KB |
| 最終ジャッジ日時 | 2026-09-09 00:54:52 |
| 合計ジャッジ時間 | 2,117 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
from sys import exit n = int(input()) if n == 1: print(101) exit() a = list(map(int, input().split())) ans = 0 for i in range(101): if (sum(a) + i) % n == 0: ans += 1 print(ans)
anagohirame