結果

問題 No.1586 Equal Array
ユーザー IgrmiIgrmi
提出日時 2021-07-08 22:24:18
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 83 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 84,880 KB
最終ジャッジ日時 2023-09-14 05:02:47
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,144 KB
testcase_01 AC 63 ms
71,276 KB
testcase_02 AC 66 ms
71,476 KB
testcase_03 AC 70 ms
71,304 KB
testcase_04 AC 83 ms
82,600 KB
testcase_05 AC 85 ms
82,580 KB
testcase_06 AC 85 ms
84,696 KB
testcase_07 AC 81 ms
84,712 KB
testcase_08 AC 84 ms
84,560 KB
testcase_09 AC 80 ms
84,676 KB
testcase_10 AC 77 ms
84,416 KB
testcase_11 AC 62 ms
71,296 KB
testcase_12 AC 61 ms
71,276 KB
testcase_13 AC 80 ms
84,572 KB
testcase_14 AC 77 ms
84,400 KB
testcase_15 AC 77 ms
84,544 KB
testcase_16 AC 81 ms
84,640 KB
testcase_17 AC 61 ms
71,172 KB
testcase_18 AC 79 ms
84,528 KB
testcase_19 AC 83 ms
84,880 KB
testcase_20 AC 62 ms
71,312 KB
testcase_21 AC 63 ms
71,368 KB
testcase_22 AC 64 ms
71,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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