結果

問題 No.476 正しくない平均
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-13 11:39:13
言語 Java19
(openjdk 21)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 71,524 KB
実行使用メモリ 58,076 KB
最終ジャッジ日時 2023-08-11 00:14:19
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
55,996 KB
testcase_02 AC 117 ms
56,256 KB
testcase_03 WA -
testcase_04 AC 118 ms
55,880 KB
testcase_05 AC 117 ms
56,248 KB
testcase_06 AC 118 ms
56,224 KB
testcase_07 AC 119 ms
56,116 KB
testcase_08 AC 123 ms
56,076 KB
testcase_09 AC 114 ms
55,752 KB
testcase_10 AC 112 ms
56,060 KB
testcase_11 AC 116 ms
56,312 KB
testcase_12 AC 115 ms
54,208 KB
testcase_13 AC 119 ms
55,640 KB
testcase_14 AC 121 ms
55,464 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 116 ms
55,680 KB
testcase_19 AC 116 ms
56,216 KB
testcase_20 AC 115 ms
56,412 KB
testcase_21 WA -
testcase_22 AC 118 ms
56,336 KB
testcase_23 AC 118 ms
56,156 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 119 ms
56,084 KB
testcase_27 WA -
testcase_28 AC 116 ms
56,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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