結果

問題 No.476 正しくない平均
ユーザー samplelpmassamplelpmas
提出日時 2017-01-28 16:25:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-06-06 07:47:39
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,960 KB
testcase_01 AC 113 ms
41,192 KB
testcase_02 AC 120 ms
40,808 KB
testcase_03 AC 118 ms
40,944 KB
testcase_04 AC 104 ms
40,032 KB
testcase_05 AC 123 ms
41,168 KB
testcase_06 AC 106 ms
40,048 KB
testcase_07 AC 120 ms
40,992 KB
testcase_08 AC 117 ms
41,144 KB
testcase_09 AC 117 ms
40,980 KB
testcase_10 AC 120 ms
40,944 KB
testcase_11 AC 106 ms
40,056 KB
testcase_12 AC 119 ms
40,936 KB
testcase_13 AC 122 ms
41,144 KB
testcase_14 AC 126 ms
41,068 KB
testcase_15 AC 124 ms
41,048 KB
testcase_16 AC 114 ms
40,820 KB
testcase_17 AC 118 ms
41,292 KB
testcase_18 AC 119 ms
41,380 KB
testcase_19 WA -
testcase_20 AC 111 ms
40,252 KB
testcase_21 AC 120 ms
40,924 KB
testcase_22 AC 123 ms
40,948 KB
testcase_23 AC 117 ms
41,036 KB
testcase_24 AC 122 ms
41,048 KB
testcase_25 AC 121 ms
41,056 KB
testcase_26 AC 120 ms
41,284 KB
testcase_27 AC 108 ms
40,172 KB
testcase_28 AC 122 ms
41,020 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();

        int answer = sc.nextInt();

        int sum = 0;

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

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

    }

}
0