結果

問題 No.1586 Equal Array
ユーザー horitaka1999horitaka1999
提出日時 2021-07-08 22:31:10
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 91,124 KB
最終ジャッジ日時 2023-09-14 05:09:07
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,292 KB
testcase_01 AC 62 ms
71,036 KB
testcase_02 AC 61 ms
71,284 KB
testcase_03 AC 60 ms
71,268 KB
testcase_04 AC 80 ms
88,668 KB
testcase_05 AC 80 ms
88,868 KB
testcase_06 AC 84 ms
90,712 KB
testcase_07 AC 82 ms
90,608 KB
testcase_08 AC 81 ms
90,740 KB
testcase_09 AC 81 ms
90,556 KB
testcase_10 AC 80 ms
90,680 KB
testcase_11 AC 60 ms
71,160 KB
testcase_12 AC 60 ms
71,352 KB
testcase_13 AC 81 ms
90,460 KB
testcase_14 AC 83 ms
90,576 KB
testcase_15 AC 86 ms
90,596 KB
testcase_16 AC 84 ms
90,880 KB
testcase_17 AC 64 ms
71,364 KB
testcase_18 AC 85 ms
90,752 KB
testcase_19 AC 87 ms
91,124 KB
testcase_20 AC 64 ms
71,164 KB
testcase_21 AC 64 ms
71,308 KB
testcase_22 AC 63 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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