結果

問題 No.1586 Equal Array
ユーザー roarisroaris
提出日時 2021-07-13 01:00:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 76 bytes
コンパイル時間 1,572 ms
コンパイル使用メモリ 86,416 KB
実行使用メモリ 84,632 KB
最終ジャッジ日時 2023-09-14 21:19:30
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,040 KB
testcase_01 AC 74 ms
71,396 KB
testcase_02 AC 76 ms
71,372 KB
testcase_03 AC 76 ms
71,156 KB
testcase_04 AC 92 ms
82,184 KB
testcase_05 AC 91 ms
82,160 KB
testcase_06 AC 95 ms
84,456 KB
testcase_07 AC 93 ms
84,260 KB
testcase_08 AC 94 ms
84,256 KB
testcase_09 AC 94 ms
84,240 KB
testcase_10 AC 92 ms
84,288 KB
testcase_11 AC 73 ms
70,968 KB
testcase_12 AC 73 ms
71,312 KB
testcase_13 AC 92 ms
84,196 KB
testcase_14 AC 93 ms
84,464 KB
testcase_15 AC 95 ms
84,296 KB
testcase_16 AC 96 ms
84,300 KB
testcase_17 AC 75 ms
71,224 KB
testcase_18 AC 92 ms
84,144 KB
testcase_19 AC 93 ms
84,632 KB
testcase_20 AC 75 ms
71,348 KB
testcase_21 AC 75 ms
71,180 KB
testcase_22 AC 74 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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