結果
問題 | No.476 正しくない平均 |
ユーザー | te-sh |
提出日時 | 2017-12-11 15:20:28 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 254 bytes |
コンパイル時間 | 632 ms |
コンパイル使用メモリ | 99,612 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 22:59:24 |
合計ジャッジ時間 | 1,481 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto rd = readln.split.to!(long[]), n = rd[0], a = rd[1]; auto x = readln.split.to!(long[]); auto sx = x.sum; writeln(sx % n == 0 && sx / n == a ? "YES" : "NO"); }