結果

問題 No.1406 Test
ユーザー ABKZABKZ
提出日時 2021-08-14 16:58:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 53,084 KB
最終ジャッジ日時 2024-10-05 13:09:25
合計ジャッジ時間 1,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,072 KB
testcase_01 AC 33 ms
52,640 KB
testcase_02 AC 32 ms
52,576 KB
testcase_03 AC 32 ms
52,624 KB
testcase_04 AC 32 ms
52,340 KB
testcase_05 AC 32 ms
52,636 KB
testcase_06 AC 32 ms
52,200 KB
testcase_07 AC 32 ms
52,492 KB
testcase_08 AC 31 ms
52,640 KB
testcase_09 AC 31 ms
51,816 KB
testcase_10 AC 32 ms
51,936 KB
testcase_11 AC 33 ms
52,868 KB
testcase_12 AC 33 ms
52,044 KB
testcase_13 AC 33 ms
53,084 KB
testcase_14 AC 32 ms
51,980 KB
testcase_15 AC 32 ms
52,464 KB
testcase_16 AC 32 ms
52,720 KB
testcase_17 AC 32 ms
51,748 KB
testcase_18 AC 32 ms
51,756 KB
testcase_19 AC 32 ms
52,036 KB
testcase_20 AC 32 ms
52,332 KB
testcase_21 AC 32 ms
52,024 KB
testcase_22 AC 33 ms
52,136 KB
testcase_23 AC 32 ms
51,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = sum(map(int, input().split())) if N > 1 else 0
b = a % N
print((100 - (0 if b == 0 else N - b)) // N + 1)
0