結果

問題 No.476 正しくない平均
ユーザー yagi2yagi2
提出日時 2017-04-14 11:19:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-18 15:15:03
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,132 KB
testcase_01 WA -
testcase_02 AC 105 ms
41,328 KB
testcase_03 AC 102 ms
40,540 KB
testcase_04 AC 104 ms
41,436 KB
testcase_05 WA -
testcase_06 AC 96 ms
41,344 KB
testcase_07 AC 105 ms
41,416 KB
testcase_08 AC 98 ms
41,356 KB
testcase_09 AC 107 ms
40,988 KB
testcase_10 AC 108 ms
41,288 KB
testcase_11 WA -
testcase_12 AC 113 ms
41,096 KB
testcase_13 AC 112 ms
41,204 KB
testcase_14 AC 96 ms
41,056 KB
testcase_15 AC 96 ms
39,832 KB
testcase_16 AC 108 ms
41,080 KB
testcase_17 AC 105 ms
41,160 KB
testcase_18 AC 113 ms
41,324 KB
testcase_19 AC 95 ms
41,280 KB
testcase_20 WA -
testcase_21 AC 104 ms
41,164 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 102 ms
41,132 KB
testcase_25 AC 106 ms
41,164 KB
testcase_26 WA -
testcase_27 AC 104 ms
41,176 KB
testcase_28 AC 105 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        long A = Long.parseLong(sc.next());

        long sum = 0;
        for (int i = 0; i < N; i++) {
            sum += Long.parseLong(sc.next());
        }

        double avg = sum / N;

        if ((double)A == avg) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0