結果

問題 No.476 正しくない平均
ユーザー マサマサ
提出日時 2022-02-09 16:33:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 3,002 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-06-24 20:26:24
合計ジャッジ時間 8,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,208 KB
testcase_01 AC 133 ms
54,368 KB
testcase_02 AC 135 ms
54,484 KB
testcase_03 AC 134 ms
54,264 KB
testcase_04 AC 134 ms
54,352 KB
testcase_05 AC 133 ms
54,412 KB
testcase_06 AC 134 ms
54,184 KB
testcase_07 AC 131 ms
54,000 KB
testcase_08 AC 132 ms
54,228 KB
testcase_09 AC 137 ms
54,484 KB
testcase_10 AC 133 ms
54,328 KB
testcase_11 AC 134 ms
54,368 KB
testcase_12 AC 133 ms
54,248 KB
testcase_13 AC 138 ms
54,356 KB
testcase_14 AC 135 ms
54,172 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
54,120 KB
testcase_19 AC 139 ms
54,420 KB
testcase_20 AC 136 ms
54,148 KB
testcase_21 WA -
testcase_22 AC 136 ms
54,112 KB
testcase_23 AC 134 ms
54,480 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 134 ms
54,464 KB
testcase_27 WA -
testcase_28 AC 136 ms
54,024 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 sample = sc.nextInt();
		
		int sum = 0;
		for (int i = 0; i < n; i++) {
			sum += sc.nextInt();
		}
		
		double avg = (double)sum / n;
		
		if (avg == sample) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
		sc.close();
	}
}
0