結果

問題 No.2451 Redistribute Integers
ユーザー sepa38sepa38
提出日時 2023-09-01 21:36:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 173,772 KB
最終ジャッジ日時 2023-09-01 21:37:01
合計ジャッジ時間 4,375 ms
ジャッジサーバーID
(参考情報)
judge16 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,260 KB
testcase_01 AC 73 ms
70,988 KB
testcase_02 AC 71 ms
71,284 KB
testcase_03 AC 73 ms
71,132 KB
testcase_04 AC 196 ms
154,020 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 72 ms
71,096 KB
testcase_08 AC 170 ms
149,252 KB
testcase_09 AC 73 ms
71,328 KB
testcase_10 AC 71 ms
70,860 KB
testcase_11 AC 71 ms
71,308 KB
testcase_12 WA -
testcase_13 AC 194 ms
173,516 KB
testcase_14 AC 192 ms
154,176 KB
testcase_15 AC 134 ms
110,540 KB
testcase_16 AC 131 ms
104,608 KB
testcase_17 WA -
testcase_18 AC 176 ms
141,436 KB
testcase_19 WA -
testcase_20 AC 162 ms
136,980 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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