結果

問題 No.1406 Test
ユーザー Schnee
提出日時 2021-05-08 21:58:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 116 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-17 06:05:49
合計ジャッジ時間 1,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
total=sum(map(int,input().split()))
way=((100+total)//n-total//n)
print(way+1 if total%n==0 else way)
0