結果

問題 No.1586 Equal Array
ユーザー IgrmiIgrmi
提出日時 2021-07-08 22:24:18
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 102 ms / 1,000 ms
コード長 83 bytes
コンパイル時間 267 ms
使用メモリ 89,440 KB
最終ジャッジ日時 2023-02-01 18:32:05
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 81 ms
75,380 KB
testcase_01 AC 81 ms
75,784 KB
testcase_02 AC 81 ms
75,820 KB
testcase_03 AC 81 ms
75,748 KB
testcase_04 AC 94 ms
86,896 KB
testcase_05 AC 94 ms
86,708 KB
testcase_06 AC 102 ms
89,196 KB
testcase_07 AC 102 ms
88,780 KB
testcase_08 AC 101 ms
89,088 KB
testcase_09 AC 102 ms
88,772 KB
testcase_10 AC 101 ms
88,776 KB
testcase_11 AC 80 ms
75,560 KB
testcase_12 AC 80 ms
75,748 KB
testcase_13 AC 101 ms
89,112 KB
testcase_14 AC 101 ms
88,764 KB
testcase_15 AC 101 ms
89,144 KB
testcase_16 AC 100 ms
89,128 KB
testcase_17 AC 80 ms
75,824 KB
testcase_18 AC 99 ms
89,232 KB
testcase_19 AC 101 ms
89,440 KB
testcase_20 AC 81 ms
75,728 KB
testcase_21 AC 82 ms
75,496 KB
testcase_22 AC 80 ms
75,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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