結果

問題 No.476 正しくない平均
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 15:26:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-10-13 13:31:35
合計ジャッジ時間 7,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,412 KB
testcase_01 AC 134 ms
40,660 KB
testcase_02 AC 144 ms
41,764 KB
testcase_03 AC 140 ms
41,312 KB
testcase_04 AC 149 ms
41,344 KB
testcase_05 AC 139 ms
41,608 KB
testcase_06 AC 147 ms
41,668 KB
testcase_07 AC 139 ms
41,684 KB
testcase_08 AC 140 ms
41,632 KB
testcase_09 AC 139 ms
41,376 KB
testcase_10 AC 141 ms
41,224 KB
testcase_11 AC 149 ms
41,648 KB
testcase_12 AC 142 ms
41,072 KB
testcase_13 AC 138 ms
40,720 KB
testcase_14 AC 145 ms
41,444 KB
testcase_15 AC 146 ms
41,200 KB
testcase_16 AC 138 ms
40,872 KB
testcase_17 AC 128 ms
41,000 KB
testcase_18 AC 146 ms
41,288 KB
testcase_19 AC 141 ms
41,256 KB
testcase_20 AC 138 ms
40,848 KB
testcase_21 AC 146 ms
41,772 KB
testcase_22 AC 129 ms
40,628 KB
testcase_23 AC 139 ms
41,500 KB
testcase_24 AC 138 ms
41,124 KB
testcase_25 AC 147 ms
41,536 KB
testcase_26 AC 127 ms
40,500 KB
testcase_27 AC 142 ms
41,372 KB
testcase_28 AC 138 ms
41,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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