結果

問題 No.1406 Test
ユーザー suiso11suiso11
提出日時 2021-02-26 22:02:54
言語 PyPy3
(7.3.13)
結果
RE  
実行時間 -
コード長 172 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 79,024 KB
最終ジャッジ日時 2023-07-25 21:25:42
合計ジャッジ時間 3,656 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,312 KB
testcase_01 AC 76 ms
71,496 KB
testcase_02 AC 77 ms
71,192 KB
testcase_03 AC 76 ms
71,152 KB
testcase_04 AC 77 ms
71,192 KB
testcase_05 AC 76 ms
71,408 KB
testcase_06 AC 74 ms
71,328 KB
testcase_07 RE -
testcase_08 AC 75 ms
71,312 KB
testcase_09 RE -
testcase_10 AC 75 ms
71,224 KB
testcase_11 AC 76 ms
71,436 KB
testcase_12 AC 76 ms
71,188 KB
testcase_13 AC 76 ms
71,360 KB
testcase_14 AC 75 ms
71,440 KB
testcase_15 AC 76 ms
71,408 KB
testcase_16 AC 76 ms
71,152 KB
testcase_17 RE -
testcase_18 AC 76 ms
71,360 KB
testcase_19 AC 76 ms
71,328 KB
testcase_20 RE -
testcase_21 AC 76 ms
71,260 KB
testcase_22 AC 75 ms
71,216 KB
testcase_23 AC 74 ms
71,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 0:
  print(100)
  quit()
a = list(map(int,input().split()))
s_a=sum(a)
for i in range(101):
  if (s_a+i)%n == 0:
    print(1+(100-i)//n)
    quit()
0