結果

問題 No.476 正しくない平均
ユーザー samplelpmassamplelpmas
提出日時 2017-01-28 16:48:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-06-06 17:21:21
合計ジャッジ時間 7,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,148 KB
testcase_01 AC 110 ms
41,480 KB
testcase_02 AC 123 ms
41,152 KB
testcase_03 AC 120 ms
41,304 KB
testcase_04 AC 122 ms
41,044 KB
testcase_05 AC 114 ms
41,380 KB
testcase_06 AC 114 ms
41,272 KB
testcase_07 AC 123 ms
41,260 KB
testcase_08 AC 123 ms
41,340 KB
testcase_09 AC 122 ms
41,316 KB
testcase_10 AC 120 ms
40,808 KB
testcase_11 AC 121 ms
41,580 KB
testcase_12 AC 122 ms
40,948 KB
testcase_13 AC 125 ms
41,188 KB
testcase_14 AC 128 ms
41,364 KB
testcase_15 AC 113 ms
41,592 KB
testcase_16 AC 112 ms
41,212 KB
testcase_17 AC 124 ms
41,364 KB
testcase_18 AC 123 ms
41,020 KB
testcase_19 AC 120 ms
41,624 KB
testcase_20 AC 123 ms
41,140 KB
testcase_21 AC 118 ms
41,016 KB
testcase_22 AC 123 ms
41,128 KB
testcase_23 AC 120 ms
40,996 KB
testcase_24 AC 125 ms
41,124 KB
testcase_25 AC 113 ms
41,076 KB
testcase_26 AC 123 ms
41,192 KB
testcase_27 AC 119 ms
41,264 KB
testcase_28 AC 108 ms
40,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        long answer = sc.nextInt();

        long sum = 0;

        for (int i = 0; i < n; i++) {
            sum += sc.nextInt();
        }

        System.out.println(sum == answer * n ? "YES" : "NO");

    }

}
0