結果

問題 No.1586 Equal Array
ユーザー kamomekamome
提出日時 2021-07-08 22:39:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 102 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 90,916 KB
最終ジャッジ日時 2023-09-14 05:13:53
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,396 KB
testcase_01 AC 60 ms
71,188 KB
testcase_02 AC 59 ms
71,576 KB
testcase_03 AC 59 ms
71,156 KB
testcase_04 AC 87 ms
88,704 KB
testcase_05 AC 81 ms
88,724 KB
testcase_06 AC 88 ms
90,756 KB
testcase_07 AC 81 ms
90,848 KB
testcase_08 AC 81 ms
90,744 KB
testcase_09 AC 85 ms
90,848 KB
testcase_10 AC 85 ms
90,708 KB
testcase_11 AC 61 ms
71,136 KB
testcase_12 AC 61 ms
71,316 KB
testcase_13 AC 81 ms
90,760 KB
testcase_14 AC 81 ms
90,676 KB
testcase_15 AC 79 ms
90,916 KB
testcase_16 AC 80 ms
90,792 KB
testcase_17 AC 60 ms
71,272 KB
testcase_18 AC 80 ms
90,736 KB
testcase_19 AC 86 ms
90,868 KB
testcase_20 AC 61 ms
71,116 KB
testcase_21 AC 61 ms
71,292 KB
testcase_22 AC 59 ms
71,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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