結果

問題 No.2451 Redistribute Integers
ユーザー shobonvipshobonvip
提出日時 2023-09-01 21:21:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 87,376 KB
実行使用メモリ 174,012 KB
最終ジャッジ日時 2023-09-01 21:22:01
合計ジャッジ時間 4,546 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,340 KB
testcase_01 AC 70 ms
71,336 KB
testcase_02 AC 71 ms
71,540 KB
testcase_03 AC 72 ms
71,444 KB
testcase_04 AC 196 ms
153,328 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 73 ms
71,340 KB
testcase_08 AC 166 ms
149,312 KB
testcase_09 AC 72 ms
71,540 KB
testcase_10 AC 71 ms
71,324 KB
testcase_11 AC 72 ms
71,328 KB
testcase_12 WA -
testcase_13 AC 190 ms
174,012 KB
testcase_14 AC 194 ms
153,152 KB
testcase_15 AC 133 ms
110,972 KB
testcase_16 AC 130 ms
105,084 KB
testcase_17 WA -
testcase_18 AC 173 ms
142,044 KB
testcase_19 WA -
testcase_20 AC 174 ms
137,024 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
if sum(a) % n != 0:
	print("No")
else:
	print("Yes")
0