結果

問題 No.1586 Equal Array
ユーザー kohei2019kohei2019
提出日時 2022-06-22 23:43:40
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 89 ms / 1,000 ms
コード長 87 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 85,012 KB
最終ジャッジ日時 2023-08-06 07:34:10
合計ジャッジ時間 4,197 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,384 KB
testcase_01 AC 69 ms
71,668 KB
testcase_02 AC 68 ms
71,544 KB
testcase_03 AC 70 ms
71,516 KB
testcase_04 AC 82 ms
82,332 KB
testcase_05 AC 82 ms
82,556 KB
testcase_06 AC 85 ms
84,540 KB
testcase_07 AC 86 ms
84,548 KB
testcase_08 AC 86 ms
84,508 KB
testcase_09 AC 87 ms
84,548 KB
testcase_10 AC 87 ms
84,412 KB
testcase_11 AC 70 ms
71,348 KB
testcase_12 AC 69 ms
71,492 KB
testcase_13 AC 86 ms
84,504 KB
testcase_14 AC 86 ms
84,540 KB
testcase_15 AC 86 ms
84,540 KB
testcase_16 AC 88 ms
84,496 KB
testcase_17 AC 72 ms
71,380 KB
testcase_18 AC 89 ms
85,012 KB
testcase_19 AC 87 ms
84,844 KB
testcase_20 AC 69 ms
71,548 KB
testcase_21 AC 69 ms
71,156 KB
testcase_22 AC 69 ms
71,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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