結果

問題 No.476 正しくない平均
ユーザー yukesyukes
提出日時 2022-11-15 21:00:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,292 KB
最終ジャッジ日時 2024-09-16 20:18:23
合計ジャッジ時間 18,553 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
43,772 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 516 ms
44,160 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 519 ms
44,164 KB
testcase_09 AC 518 ms
44,032 KB
testcase_10 AC 519 ms
44,292 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 515 ms
43,772 KB
testcase_16 AC 516 ms
44,036 KB
testcase_17 AC 519 ms
44,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 518 ms
44,156 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 518 ms
44,288 KB
testcase_25 AC 522 ms
44,032 KB
testcase_26 WA -
testcase_27 AC 523 ms
44,036 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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 "YES")
0