結果

問題 No.1406 Test
ユーザー suiso11suiso11
提出日時 2021-02-26 22:05:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 172 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-04-10 12:50:54
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,280 KB
testcase_01 AC 34 ms
52,028 KB
testcase_02 AC 34 ms
52,148 KB
testcase_03 AC 34 ms
52,880 KB
testcase_04 AC 36 ms
52,400 KB
testcase_05 AC 36 ms
52,340 KB
testcase_06 AC 35 ms
52,124 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,580 KB
testcase_09 WA -
testcase_10 AC 34 ms
52,768 KB
testcase_11 AC 35 ms
52,360 KB
testcase_12 AC 34 ms
52,124 KB
testcase_13 AC 35 ms
53,424 KB
testcase_14 AC 34 ms
52,612 KB
testcase_15 AC 35 ms
52,804 KB
testcase_16 AC 35 ms
52,820 KB
testcase_17 WA -
testcase_18 AC 35 ms
52,352 KB
testcase_19 AC 35 ms
52,572 KB
testcase_20 WA -
testcase_21 AC 34 ms
52,180 KB
testcase_22 AC 35 ms
52,804 KB
testcase_23 AC 36 ms
51,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
  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