結果

問題 No.1586 Equal Array
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-08 22:29:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 118 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 83,808 KB
最終ジャッジ日時 2024-07-01 12:48:17
合計ジャッジ時間 2,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,880 KB
testcase_01 AC 38 ms
52,564 KB
testcase_02 AC 37 ms
51,816 KB
testcase_03 AC 38 ms
52,156 KB
testcase_04 AC 57 ms
79,000 KB
testcase_05 AC 59 ms
76,896 KB
testcase_06 AC 62 ms
83,196 KB
testcase_07 AC 63 ms
81,968 KB
testcase_08 AC 62 ms
83,484 KB
testcase_09 AC 62 ms
81,912 KB
testcase_10 AC 63 ms
82,784 KB
testcase_11 AC 37 ms
52,284 KB
testcase_12 AC 38 ms
52,316 KB
testcase_13 AC 63 ms
83,808 KB
testcase_14 AC 64 ms
82,264 KB
testcase_15 AC 62 ms
82,292 KB
testcase_16 AC 63 ms
82,640 KB
testcase_17 AC 38 ms
52,264 KB
testcase_18 AC 63 ms
82,540 KB
testcase_19 AC 63 ms
82,892 KB
testcase_20 AC 36 ms
51,984 KB
testcase_21 AC 38 ms
53,212 KB
testcase_22 AC 37 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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