結果

問題 No.1586 Equal Array
ユーザー 👑 rin204rin204
提出日時 2021-08-05 13:17:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 127 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 91,472 KB
最終ジャッジ日時 2023-10-14 21:35:16
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,480 KB
testcase_01 AC 69 ms
71,384 KB
testcase_02 AC 68 ms
71,516 KB
testcase_03 AC 72 ms
71,140 KB
testcase_04 AC 86 ms
88,552 KB
testcase_05 AC 87 ms
88,780 KB
testcase_06 AC 91 ms
90,940 KB
testcase_07 AC 93 ms
90,888 KB
testcase_08 AC 91 ms
90,544 KB
testcase_09 AC 93 ms
90,920 KB
testcase_10 AC 93 ms
90,784 KB
testcase_11 AC 70 ms
71,112 KB
testcase_12 AC 69 ms
71,284 KB
testcase_13 AC 92 ms
90,600 KB
testcase_14 AC 92 ms
90,568 KB
testcase_15 AC 92 ms
90,580 KB
testcase_16 AC 92 ms
90,728 KB
testcase_17 AC 70 ms
71,420 KB
testcase_18 AC 92 ms
90,736 KB
testcase_19 AC 93 ms
91,472 KB
testcase_20 AC 70 ms
71,308 KB
testcase_21 AC 68 ms
71,524 KB
testcase_22 AC 69 ms
71,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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