結果

問題 No.1406 Test
ユーザー suiso11suiso11
提出日時 2021-02-26 21:41:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 66,384 KB
最終ジャッジ日時 2024-04-10 12:18:39
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,656 KB
testcase_01 AC 32 ms
53,548 KB
testcase_02 AC 30 ms
52,860 KB
testcase_03 WA -
testcase_04 AC 30 ms
52,340 KB
testcase_05 AC 30 ms
51,996 KB
testcase_06 AC 30 ms
53,572 KB
testcase_07 RE -
testcase_08 AC 30 ms
52,560 KB
testcase_09 RE -
testcase_10 AC 30 ms
52,208 KB
testcase_11 AC 31 ms
52,228 KB
testcase_12 AC 29 ms
53,032 KB
testcase_13 AC 31 ms
53,008 KB
testcase_14 WA -
testcase_15 AC 31 ms
52,332 KB
testcase_16 AC 31 ms
51,892 KB
testcase_17 RE -
testcase_18 AC 31 ms
52,200 KB
testcase_19 AC 30 ms
53,356 KB
testcase_20 RE -
testcase_21 AC 30 ms
52,200 KB
testcase_22 AC 31 ms
52,276 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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