結果
| 問題 | No.476 正しくない平均 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-05 06:42:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 99 bytes |
| 記録 | |
| コンパイル時間 | 316 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2026-03-22 21:22:49 |
| 合計ジャッジ時間 | 2,237 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
n,a = map(int,input().split())
*x, = map(int,input().split())
print("YES" if sum(x)==n*a else "NO")
convexineq