結果

問題 No.1406 Test
ユーザー GER_chenGER_chen
提出日時 2021-02-26 23:24:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 53,708 KB
最終ジャッジ日時 2024-04-10 14:33:35
合計ジャッジ時間 1,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,388 KB
testcase_01 AC 36 ms
52,308 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 AC 33 ms
52,176 KB
testcase_04 AC 34 ms
52,892 KB
testcase_05 AC 33 ms
51,884 KB
testcase_06 AC 33 ms
53,708 KB
testcase_07 AC 34 ms
52,556 KB
testcase_08 AC 33 ms
52,296 KB
testcase_09 AC 33 ms
51,548 KB
testcase_10 AC 32 ms
52,356 KB
testcase_11 AC 34 ms
51,964 KB
testcase_12 AC 32 ms
52,408 KB
testcase_13 AC 35 ms
52,060 KB
testcase_14 AC 32 ms
52,616 KB
testcase_15 AC 33 ms
52,188 KB
testcase_16 AC 33 ms
53,076 KB
testcase_17 AC 34 ms
52,884 KB
testcase_18 AC 33 ms
53,628 KB
testcase_19 AC 32 ms
52,992 KB
testcase_20 AC 33 ms
53,100 KB
testcase_21 AC 32 ms
52,684 KB
testcase_22 AC 33 ms
52,268 KB
testcase_23 AC 33 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = 0
if n-1:
    A = list(map(int, input().split()))
    x = -sum(A)%n
ans = (100-x)//n+1
print(ans)
0