結果

問題 No.476 正しくない平均
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 19:49:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 2,844 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-02 07:46:06
合計ジャッジ時間 6,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,128 KB
testcase_01 AC 131 ms
41,404 KB
testcase_02 AC 133 ms
41,336 KB
testcase_03 AC 132 ms
41,576 KB
testcase_04 AC 134 ms
41,188 KB
testcase_05 AC 135 ms
41,068 KB
testcase_06 AC 132 ms
41,388 KB
testcase_07 AC 134 ms
41,660 KB
testcase_08 AC 130 ms
41,240 KB
testcase_09 AC 132 ms
41,136 KB
testcase_10 AC 133 ms
40,936 KB
testcase_11 AC 132 ms
41,232 KB
testcase_12 AC 132 ms
41,524 KB
testcase_13 AC 135 ms
41,656 KB
testcase_14 AC 135 ms
41,132 KB
testcase_15 AC 134 ms
41,244 KB
testcase_16 AC 132 ms
40,900 KB
testcase_17 AC 134 ms
41,172 KB
testcase_18 AC 134 ms
41,192 KB
testcase_19 AC 130 ms
41,056 KB
testcase_20 AC 122 ms
41,216 KB
testcase_21 AC 133 ms
41,108 KB
testcase_22 AC 131 ms
41,100 KB
testcase_23 AC 132 ms
41,500 KB
testcase_24 AC 133 ms
40,796 KB
testcase_25 AC 118 ms
41,060 KB
testcase_26 AC 134 ms
41,176 KB
testcase_27 AC 134 ms
41,288 KB
testcase_28 AC 132 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    long a = sc.nextLong();
    long sum = 0;
    for(int i = 0; i < n; i++) {
      sum += sc.nextLong();
    }
    String ans = "NO";
    if(sum == a * n) ans = "YES";
    System.out.println(ans);
  }
}
0