結果

問題 No.476 正しくない平均
ユーザー tentententen
提出日時 2020-11-11 17:27:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-07-22 18:33:46
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,328 KB
testcase_01 AC 96 ms
41,192 KB
testcase_02 AC 102 ms
41,312 KB
testcase_03 AC 111 ms
41,412 KB
testcase_04 AC 129 ms
41,204 KB
testcase_05 AC 97 ms
41,540 KB
testcase_06 AC 114 ms
41,372 KB
testcase_07 AC 115 ms
41,500 KB
testcase_08 AC 106 ms
41,456 KB
testcase_09 AC 107 ms
41,500 KB
testcase_10 AC 113 ms
41,736 KB
testcase_11 AC 111 ms
41,164 KB
testcase_12 AC 101 ms
41,336 KB
testcase_13 AC 115 ms
41,296 KB
testcase_14 AC 111 ms
41,764 KB
testcase_15 AC 110 ms
41,500 KB
testcase_16 AC 116 ms
41,420 KB
testcase_17 AC 116 ms
41,416 KB
testcase_18 AC 113 ms
41,284 KB
testcase_19 AC 113 ms
41,592 KB
testcase_20 AC 106 ms
41,424 KB
testcase_21 AC 100 ms
41,672 KB
testcase_22 AC 111 ms
41,272 KB
testcase_23 AC 102 ms
41,380 KB
testcase_24 AC 105 ms
41,592 KB
testcase_25 AC 101 ms
41,448 KB
testcase_26 AC 110 ms
41,332 KB
testcase_27 AC 98 ms
41,384 KB
testcase_28 AC 115 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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