結果

問題 No.1586 Equal Array
ユーザー KudeKude
提出日時 2021-07-08 22:22:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 88 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 86,980 KB
実行使用メモリ 84,584 KB
最終ジャッジ日時 2023-09-14 04:59:24
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,100 KB
testcase_01 AC 60 ms
70,908 KB
testcase_02 AC 60 ms
71,428 KB
testcase_03 AC 64 ms
71,180 KB
testcase_04 AC 71 ms
82,316 KB
testcase_05 AC 71 ms
82,440 KB
testcase_06 AC 74 ms
84,532 KB
testcase_07 AC 74 ms
84,396 KB
testcase_08 AC 75 ms
84,488 KB
testcase_09 AC 74 ms
84,412 KB
testcase_10 AC 74 ms
84,300 KB
testcase_11 AC 58 ms
71,292 KB
testcase_12 AC 57 ms
71,276 KB
testcase_13 AC 76 ms
84,452 KB
testcase_14 AC 76 ms
84,244 KB
testcase_15 AC 75 ms
84,404 KB
testcase_16 AC 76 ms
84,504 KB
testcase_17 AC 59 ms
71,184 KB
testcase_18 AC 79 ms
84,488 KB
testcase_19 AC 82 ms
84,584 KB
testcase_20 AC 64 ms
71,236 KB
testcase_21 AC 60 ms
71,108 KB
testcase_22 AC 63 ms
71,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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