結果

問題 No.476 正しくない平均
ユーザー bellbell
提出日時 2021-02-20 17:47:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-09-18 18:22:54
合計ジャッジ時間 7,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,104 KB
testcase_01 AC 135 ms
41,548 KB
testcase_02 AC 137 ms
41,504 KB
testcase_03 AC 136 ms
41,864 KB
testcase_04 AC 134 ms
41,312 KB
testcase_05 AC 135 ms
41,696 KB
testcase_06 AC 135 ms
41,600 KB
testcase_07 AC 138 ms
41,392 KB
testcase_08 AC 137 ms
41,456 KB
testcase_09 AC 134 ms
41,256 KB
testcase_10 AC 137 ms
41,568 KB
testcase_11 AC 137 ms
41,344 KB
testcase_12 AC 136 ms
41,144 KB
testcase_13 AC 138 ms
41,572 KB
testcase_14 AC 136 ms
41,544 KB
testcase_15 AC 136 ms
41,296 KB
testcase_16 AC 136 ms
41,268 KB
testcase_17 AC 133 ms
41,792 KB
testcase_18 AC 135 ms
41,220 KB
testcase_19 AC 137 ms
41,488 KB
testcase_20 AC 135 ms
41,272 KB
testcase_21 AC 136 ms
41,404 KB
testcase_22 AC 129 ms
41,296 KB
testcase_23 AC 138 ms
40,984 KB
testcase_24 AC 129 ms
41,216 KB
testcase_25 AC 129 ms
41,524 KB
testcase_26 AC 116 ms
40,068 KB
testcase_27 AC 128 ms
41,352 KB
testcase_28 AC 122 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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