結果

問題 No.2451 Redistribute Integers
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-09-01 22:34:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 87,292 KB
実行使用メモリ 173,888 KB
最終ジャッジ日時 2023-09-01 22:34:18
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,328 KB
testcase_01 AC 76 ms
71,364 KB
testcase_02 AC 75 ms
71,620 KB
testcase_03 AC 76 ms
71,368 KB
testcase_04 AC 208 ms
153,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 74 ms
71,432 KB
testcase_08 AC 175 ms
149,416 KB
testcase_09 AC 74 ms
71,172 KB
testcase_10 AC 74 ms
71,140 KB
testcase_11 AC 76 ms
71,500 KB
testcase_12 WA -
testcase_13 AC 203 ms
173,888 KB
testcase_14 AC 202 ms
153,144 KB
testcase_15 AC 138 ms
111,016 KB
testcase_16 AC 138 ms
105,044 KB
testcase_17 WA -
testcase_18 AC 185 ms
141,900 KB
testcase_19 WA -
testcase_20 AC 167 ms
137,040 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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