結果

問題 No.476 正しくない平均
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 15:25:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-13 13:26:22
合計ジャッジ時間 6,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,912 KB
testcase_01 WA -
testcase_02 AC 129 ms
41,048 KB
testcase_03 AC 128 ms
41,256 KB
testcase_04 AC 128 ms
40,900 KB
testcase_05 WA -
testcase_06 AC 126 ms
41,112 KB
testcase_07 AC 128 ms
41,044 KB
testcase_08 AC 128 ms
41,420 KB
testcase_09 AC 128 ms
40,948 KB
testcase_10 AC 128 ms
41,284 KB
testcase_11 WA -
testcase_12 AC 126 ms
40,768 KB
testcase_13 AC 129 ms
41,036 KB
testcase_14 AC 129 ms
41,468 KB
testcase_15 AC 125 ms
41,196 KB
testcase_16 AC 128 ms
40,748 KB
testcase_17 AC 130 ms
41,252 KB
testcase_18 AC 129 ms
41,216 KB
testcase_19 AC 129 ms
40,928 KB
testcase_20 WA -
testcase_21 AC 125 ms
40,452 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 117 ms
39,928 KB
testcase_25 AC 127 ms
41,016 KB
testcase_26 WA -
testcase_27 AC 129 ms
41,004 KB
testcase_28 AC 130 ms
40,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n =sc.nextInt();
		int a = sc.nextInt();
		long total = 0;
		for (int i=0; i<n; i++) {
			total += sc.nextInt();
		}
		long average = total/n;
		System.out.println(average==a?"YES":"NO");
	}
}
0