結果
問題 | No.476 正しくない平均 |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-05-04 08:39:02 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 738 bytes |
コンパイル時間 | 2,092 ms |
コンパイル使用メモリ | 74,520 KB |
実行使用メモリ | 37,152 KB |
最終ジャッジ日時 | 2024-09-14 06:18:32 |
合計ジャッジ時間 | 4,602 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String[] inputs = reader.readLine().split(" "); int n = Integer.parseInt(inputs[0]); long a = Long.parseLong(inputs[1]); inputs = reader.readLine().split(" "); long sum = 0; for (int i = 0; i < n; i++) { sum += Long.parseLong(inputs[i]); } if((a*n) == sum) { System.out.println("YES"); } else { System.out.println("NO"); } } }