結果

問題 No.476 正しくない平均
ユーザー YOSHIYOSHI
提出日時 2021-03-16 22:31:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 4,716 ms
コンパイル使用メモリ 73,404 KB
実行使用メモリ 37,152 KB
最終ジャッジ日時 2024-11-08 18:02:58
合計ジャッジ時間 6,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,812 KB
testcase_01 AC 53 ms
36,652 KB
testcase_02 AC 53 ms
36,512 KB
testcase_03 AC 52 ms
36,536 KB
testcase_04 AC 52 ms
37,084 KB
testcase_05 AC 52 ms
36,672 KB
testcase_06 AC 52 ms
36,784 KB
testcase_07 AC 53 ms
36,672 KB
testcase_08 AC 53 ms
36,784 KB
testcase_09 AC 51 ms
37,000 KB
testcase_10 AC 53 ms
37,000 KB
testcase_11 AC 53 ms
36,512 KB
testcase_12 AC 53 ms
36,796 KB
testcase_13 AC 52 ms
36,916 KB
testcase_14 AC 53 ms
36,752 KB
testcase_15 AC 53 ms
36,652 KB
testcase_16 AC 53 ms
36,520 KB
testcase_17 AC 53 ms
37,152 KB
testcase_18 AC 53 ms
36,988 KB
testcase_19 WA -
testcase_20 AC 51 ms
36,804 KB
testcase_21 AC 53 ms
36,924 KB
testcase_22 AC 53 ms
37,088 KB
testcase_23 AC 53 ms
36,776 KB
testcase_24 AC 52 ms
36,712 KB
testcase_25 AC 53 ms
36,984 KB
testcase_26 AC 52 ms
36,660 KB
testcase_27 AC 52 ms
36,536 KB
testcase_28 AC 53 ms
37,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000476_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] t = br.readLine().split(" ");
		int n = Integer.parseInt(t[0]);
		String[] x = br.readLine().split(" ");
		int sum = 0;
		for(int i = 0; i < n; i++) sum += Integer.parseInt(x[i]);
		System.out.println(n * Integer.parseInt(t[1]) == sum ? "YES" : "NO");
	}
}
0