結果

問題 No.476 正しくない平均
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-02 01:17:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 4,125 ms
コンパイル使用メモリ 73,208 KB
実行使用メモリ 37,364 KB
最終ジャッジ日時 2024-11-15 21:52:42
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,084 KB
testcase_01 AC 51 ms
37,084 KB
testcase_02 AC 51 ms
37,020 KB
testcase_03 AC 52 ms
36,916 KB
testcase_04 AC 52 ms
37,180 KB
testcase_05 AC 52 ms
36,936 KB
testcase_06 AC 51 ms
37,084 KB
testcase_07 AC 51 ms
37,324 KB
testcase_08 AC 51 ms
37,056 KB
testcase_09 AC 51 ms
37,124 KB
testcase_10 AC 52 ms
37,240 KB
testcase_11 AC 53 ms
36,952 KB
testcase_12 AC 52 ms
37,080 KB
testcase_13 AC 51 ms
37,016 KB
testcase_14 AC 52 ms
37,268 KB
testcase_15 AC 52 ms
37,364 KB
testcase_16 AC 52 ms
37,168 KB
testcase_17 AC 52 ms
37,324 KB
testcase_18 AC 52 ms
36,936 KB
testcase_19 AC 52 ms
37,084 KB
testcase_20 AC 53 ms
37,296 KB
testcase_21 AC 52 ms
37,200 KB
testcase_22 AC 52 ms
37,148 KB
testcase_23 AC 52 ms
37,044 KB
testcase_24 AC 52 ms
36,916 KB
testcase_25 AC 52 ms
37,228 KB
testcase_26 AC 52 ms
36,808 KB
testcase_27 AC 52 ms
37,316 KB
testcase_28 AC 52 ms
37,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No476 {

	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String[] str = br.readLine().split(" ");
			int N = Integer.parseInt(str[0]);
			double maiAns = Double.parseDouble(str[1]);
			String[] str2 = br.readLine().split(" ");
			long[] num = new long[N];
			long sum = 0;
			for(int i=0; i < N; i++){
				num[i] = Integer.parseInt(str2[i]);
				sum += num[i];
			}
			double ave = (double)sum / N;
			if(maiAns == ave) System.out.println("YES");
			else System.out.println("NO");
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}

}
0