結果

問題 No.476 正しくない平均
ユーザー matriematrie
提出日時 2020-11-26 09:03:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,416 KB
最終ジャッジ日時 2024-07-23 20:43:14
合計ジャッジ時間 16,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
44,288 KB
testcase_01 AC 513 ms
44,160 KB
testcase_02 AC 504 ms
44,160 KB
testcase_03 AC 514 ms
43,780 KB
testcase_04 AC 505 ms
44,164 KB
testcase_05 AC 508 ms
43,772 KB
testcase_06 AC 510 ms
43,904 KB
testcase_07 AC 510 ms
43,908 KB
testcase_08 AC 505 ms
43,904 KB
testcase_09 AC 507 ms
43,784 KB
testcase_10 AC 504 ms
43,900 KB
testcase_11 AC 519 ms
44,296 KB
testcase_12 AC 514 ms
44,164 KB
testcase_13 AC 527 ms
44,416 KB
testcase_14 AC 514 ms
44,036 KB
testcase_15 AC 524 ms
44,032 KB
testcase_16 AC 522 ms
44,292 KB
testcase_17 AC 521 ms
43,904 KB
testcase_18 AC 522 ms
44,164 KB
testcase_19 AC 516 ms
44,288 KB
testcase_20 AC 514 ms
44,288 KB
testcase_21 AC 514 ms
43,904 KB
testcase_22 AC 515 ms
43,776 KB
testcase_23 AC 515 ms
43,904 KB
testcase_24 AC 511 ms
44,296 KB
testcase_25 AC 513 ms
43,772 KB
testcase_26 AC 508 ms
44,156 KB
testcase_27 AC 506 ms
44,276 KB
testcase_28 AC 504 ms
43,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
n,a = (int(x) for x in input().split())
l = list(map(int, input().split()))
print("YES" if a==numpy.average(l) else "NO")
0