結果

問題 No.1586 Equal Array
ユーザー 👑 Kiri8128Kiri8128
提出日時 2021-07-08 22:54:44
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 96 bytes
コンパイル時間 275 ms
使用メモリ 90,296 KB
最終ジャッジ日時 2023-02-01 19:02:17
合計ジャッジ時間 4,064 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 84 ms
75,708 KB
testcase_01 AC 84 ms
75,724 KB
testcase_02 AC 85 ms
75,668 KB
testcase_03 AC 88 ms
75,636 KB
testcase_04 AC 105 ms
88,112 KB
testcase_05 AC 100 ms
88,060 KB
testcase_06 AC 110 ms
90,236 KB
testcase_07 AC 111 ms
89,768 KB
testcase_08 AC 108 ms
90,064 KB
testcase_09 AC 109 ms
90,132 KB
testcase_10 AC 107 ms
89,912 KB
testcase_11 AC 85 ms
75,516 KB
testcase_12 AC 85 ms
75,764 KB
testcase_13 AC 107 ms
89,924 KB
testcase_14 AC 109 ms
90,108 KB
testcase_15 AC 109 ms
89,748 KB
testcase_16 AC 108 ms
89,720 KB
testcase_17 AC 86 ms
75,404 KB
testcase_18 AC 107 ms
90,296 KB
testcase_19 AC 110 ms
90,104 KB
testcase_20 AC 86 ms
75,740 KB
testcase_21 AC 85 ms
75,780 KB
testcase_22 AC 84 ms
75,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
print("Yes" if sum(A) % N == 0 else "No")
0