結果

問題 No.476 正しくない平均
ユーザー 37zigen37zigen
提出日時 2017-01-28 01:33:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 75,484 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-06 17:13:52
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,008 KB
testcase_01 AC 113 ms
41,280 KB
testcase_02 AC 114 ms
41,016 KB
testcase_03 AC 107 ms
39,832 KB
testcase_04 AC 118 ms
40,960 KB
testcase_05 AC 115 ms
40,824 KB
testcase_06 AC 105 ms
40,292 KB
testcase_07 AC 116 ms
41,232 KB
testcase_08 AC 115 ms
41,148 KB
testcase_09 AC 118 ms
40,904 KB
testcase_10 AC 118 ms
40,816 KB
testcase_11 AC 120 ms
41,140 KB
testcase_12 AC 120 ms
41,568 KB
testcase_13 AC 118 ms
41,172 KB
testcase_14 AC 114 ms
40,152 KB
testcase_15 AC 120 ms
41,388 KB
testcase_16 AC 104 ms
40,228 KB
testcase_17 AC 120 ms
41,332 KB
testcase_18 AC 125 ms
41,012 KB
testcase_19 AC 109 ms
40,176 KB
testcase_20 AC 123 ms
41,320 KB
testcase_21 AC 106 ms
40,176 KB
testcase_22 AC 120 ms
41,072 KB
testcase_23 AC 116 ms
40,320 KB
testcase_24 AC 122 ms
40,744 KB
testcase_25 AC 120 ms
40,944 KB
testcase_26 AC 119 ms
40,904 KB
testcase_27 AC 126 ms
40,924 KB
testcase_28 AC 120 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;
import java.util.concurrent.SynchronousQueue;

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

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0