結果
| 問題 | No.1406 Test |
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2021-05-08 21:58:21 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 116 bytes |
| 記録 | |
| コンパイル時間 | 527 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-04-06 03:37:19 |
| 合計ジャッジ時間 | 4,086 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 RE * 4 |
ソースコード
n=int(input()) total=sum(map(int,input().split())) way=((100+total)//n-total//n) print(way+1 if total%n==0 else way)
Schnee