結果

問題 No.476 正しくない平均
ユーザー YOSHIYOSHI
提出日時 2021-03-16 22:36:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-11-08 18:10:19
合計ジャッジ時間 6,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,560 KB
testcase_01 AC 54 ms
36,904 KB
testcase_02 AC 53 ms
36,960 KB
testcase_03 AC 54 ms
36,484 KB
testcase_04 AC 54 ms
36,808 KB
testcase_05 AC 54 ms
36,692 KB
testcase_06 AC 53 ms
36,836 KB
testcase_07 AC 55 ms
36,812 KB
testcase_08 AC 55 ms
36,712 KB
testcase_09 AC 53 ms
36,916 KB
testcase_10 AC 54 ms
36,536 KB
testcase_11 AC 53 ms
36,848 KB
testcase_12 AC 54 ms
36,548 KB
testcase_13 AC 54 ms
36,948 KB
testcase_14 AC 53 ms
37,096 KB
testcase_15 AC 53 ms
36,760 KB
testcase_16 AC 53 ms
36,580 KB
testcase_17 AC 52 ms
36,792 KB
testcase_18 AC 53 ms
36,632 KB
testcase_19 AC 54 ms
36,488 KB
testcase_20 AC 54 ms
36,904 KB
testcase_21 AC 54 ms
36,464 KB
testcase_22 AC 54 ms
36,564 KB
testcase_23 AC 52 ms
36,468 KB
testcase_24 AC 55 ms
36,520 KB
testcase_25 AC 51 ms
36,968 KB
testcase_26 AC 52 ms
36,528 KB
testcase_27 AC 50 ms
36,984 KB
testcase_28 AC 53 ms
36,716 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(" ");
		long sum = 0;
		for(int i = 0; i < n; i++) sum += Integer.parseInt(x[i]);
		System.out.println(n * Long.parseLong(t[1]) == sum ? "YES" : "NO");
	}
}
0