結果

問題 No.476 正しくない平均
ユーザー tanzakutanzaku
提出日時 2017-01-27 22:21:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 3,649 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,172 KB
最終ジャッジ日時 2024-06-06 16:54:00
合計ジャッジ時間 7,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,992 KB
testcase_01 AC 108 ms
39,808 KB
testcase_02 AC 119 ms
41,172 KB
testcase_03 AC 103 ms
40,432 KB
testcase_04 AC 95 ms
39,496 KB
testcase_05 AC 104 ms
40,020 KB
testcase_06 AC 107 ms
40,528 KB
testcase_07 AC 107 ms
41,008 KB
testcase_08 AC 99 ms
40,192 KB
testcase_09 AC 109 ms
41,136 KB
testcase_10 AC 110 ms
40,768 KB
testcase_11 AC 115 ms
40,908 KB
testcase_12 AC 107 ms
40,688 KB
testcase_13 AC 96 ms
39,532 KB
testcase_14 AC 111 ms
41,152 KB
testcase_15 AC 116 ms
40,652 KB
testcase_16 AC 105 ms
39,596 KB
testcase_17 AC 97 ms
39,528 KB
testcase_18 AC 107 ms
40,296 KB
testcase_19 AC 108 ms
40,976 KB
testcase_20 AC 106 ms
40,304 KB
testcase_21 AC 108 ms
40,996 KB
testcase_22 AC 107 ms
40,972 KB
testcase_23 AC 107 ms
40,300 KB
testcase_24 AC 114 ms
41,092 KB
testcase_25 AC 113 ms
40,964 KB
testcase_26 AC 100 ms
39,964 KB
testcase_27 AC 103 ms
40,064 KB
testcase_28 AC 98 ms
39,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _476 {
	public static void main(String[] args) throws IOException {
		new _476().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			int n = in.nextInt();
			long a = in.nextLong();
			long sum = 0;
			for (int i = 0; i < n; i++) sum += in.nextLong();
			System.out.println(sum == a * n ? "YES" : "NO");
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0