結果

問題 No.476 正しくない平均
ユーザー misk703misk703
提出日時 2018-06-04 15:15:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 3,680 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 55,888 KB
最終ジャッジ日時 2024-06-30 09:37:37
合計ジャッジ時間 7,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 127 ms
41,428 KB
testcase_02 AC 129 ms
41,200 KB
testcase_03 AC 129 ms
41,272 KB
testcase_04 AC 128 ms
41,356 KB
testcase_05 AC 131 ms
41,304 KB
testcase_06 AC 114 ms
40,212 KB
testcase_07 AC 129 ms
41,116 KB
testcase_08 AC 116 ms
40,000 KB
testcase_09 AC 128 ms
41,372 KB
testcase_10 AC 127 ms
41,360 KB
testcase_11 AC 128 ms
41,200 KB
testcase_12 AC 130 ms
41,172 KB
testcase_13 AC 121 ms
41,168 KB
testcase_14 AC 114 ms
40,228 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 128 ms
41,404 KB
testcase_19 AC 125 ms
41,256 KB
testcase_20 AC 127 ms
41,256 KB
testcase_21 WA -
testcase_22 AC 131 ms
41,552 KB
testcase_23 AC 130 ms
41,300 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 130 ms
41,256 KB
testcase_27 WA -
testcase_28 AC 124 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class No476 {

    public static void main(String[] args) {
	Scanner s = new Scanner(System.in);
	int N = s.nextInt();
	int A = s.nextInt();
	ArrayList<Integer> list = new ArrayList<>();
	for(int i=0;i<N;i++){
	    list.add(s.nextInt());
	}
	double ave; int sum = 0;
	for(int i :list){
	    sum += i;
	}
	ave = (double)sum / N;
	if(ave == A){
	    System.out.println("YES");
	}else{
	    System.out.println("NO");
	}
    }

}
0