結果

問題 No.1406 Test
ユーザー ytftytft
提出日時 2022-10-25 14:43:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 71,468 KB
最終ジャッジ日時 2023-09-16 13:12:22
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
70,892 KB
testcase_01 AC 75 ms
71,220 KB
testcase_02 AC 74 ms
71,216 KB
testcase_03 WA -
testcase_04 AC 75 ms
71,012 KB
testcase_05 AC 73 ms
71,084 KB
testcase_06 AC 72 ms
71,164 KB
testcase_07 WA -
testcase_08 AC 73 ms
71,168 KB
testcase_09 WA -
testcase_10 AC 73 ms
71,092 KB
testcase_11 AC 74 ms
71,324 KB
testcase_12 AC 76 ms
71,244 KB
testcase_13 AC 73 ms
70,988 KB
testcase_14 WA -
testcase_15 AC 73 ms
71,280 KB
testcase_16 AC 73 ms
71,332 KB
testcase_17 WA -
testcase_18 AC 74 ms
71,172 KB
testcase_19 AC 73 ms
71,224 KB
testcase_20 WA -
testcase_21 AC 74 ms
71,260 KB
testcase_22 AC 75 ms
71,364 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
A=list(map(int,input().split()))
print((100+sum(A)%N)//N)
0