結果

問題 No.1586 Equal Array
ユーザー ntudantuda
提出日時 2021-07-23 13:20:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 90,928 KB
最終ジャッジ日時 2023-09-25 11:38:44
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,140 KB
testcase_01 AC 70 ms
71,248 KB
testcase_02 AC 70 ms
71,324 KB
testcase_03 AC 69 ms
71,240 KB
testcase_04 AC 113 ms
88,544 KB
testcase_05 AC 91 ms
88,644 KB
testcase_06 AC 94 ms
90,856 KB
testcase_07 AC 92 ms
90,604 KB
testcase_08 AC 93 ms
90,652 KB
testcase_09 AC 93 ms
90,868 KB
testcase_10 AC 93 ms
90,456 KB
testcase_11 AC 69 ms
71,088 KB
testcase_12 AC 69 ms
71,444 KB
testcase_13 AC 92 ms
90,672 KB
testcase_14 AC 92 ms
90,520 KB
testcase_15 AC 93 ms
90,652 KB
testcase_16 AC 92 ms
90,580 KB
testcase_17 AC 70 ms
71,236 KB
testcase_18 AC 95 ms
90,608 KB
testcase_19 AC 95 ms
90,928 KB
testcase_20 AC 75 ms
71,208 KB
testcase_21 AC 70 ms
71,248 KB
testcase_22 AC 70 ms
71,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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