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