結果

問題 No.476 正しくない平均
ユーザー nebukuro09nebukuro09
提出日時 2017-01-27 22:21:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-12-24 09:27:36
合計ジャッジ時間 1,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, raw_input().split())
print 'YES' if sum(map(int, raw_input().split())) == n*x else 'NO'
0