結果

問題 No.1586 Equal Array
ユーザー Kiri8128Kiri8128
提出日時 2021-07-08 22:54:44
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 96 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 85,836 KB
最終ジャッジ日時 2023-09-14 05:24:27
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,224 KB
testcase_01 AC 73 ms
71,224 KB
testcase_02 AC 71 ms
71,276 KB
testcase_03 AC 72 ms
71,240 KB
testcase_04 AC 87 ms
83,280 KB
testcase_05 AC 85 ms
83,288 KB
testcase_06 AC 91 ms
85,408 KB
testcase_07 AC 92 ms
85,440 KB
testcase_08 AC 91 ms
85,372 KB
testcase_09 AC 91 ms
85,444 KB
testcase_10 AC 91 ms
85,328 KB
testcase_11 AC 73 ms
71,328 KB
testcase_12 AC 72 ms
71,408 KB
testcase_13 AC 92 ms
85,364 KB
testcase_14 AC 93 ms
85,328 KB
testcase_15 AC 92 ms
85,504 KB
testcase_16 AC 93 ms
85,416 KB
testcase_17 AC 71 ms
71,452 KB
testcase_18 AC 92 ms
85,436 KB
testcase_19 AC 93 ms
85,836 KB
testcase_20 AC 74 ms
71,356 KB
testcase_21 AC 74 ms
71,252 KB
testcase_22 AC 74 ms
71,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
print("Yes" if sum(A) % N == 0 else "No")
0