結果

問題 No.476 正しくない平均
ユーザー yamax3232yamax3232
提出日時 2017-02-09 21:36:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 3,819 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-06-07 18:10:49
合計ジャッジ時間 8,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,160 KB
testcase_01 AC 138 ms
41,216 KB
testcase_02 AC 137 ms
41,236 KB
testcase_03 AC 136 ms
41,436 KB
testcase_04 AC 135 ms
41,276 KB
testcase_05 AC 136 ms
41,276 KB
testcase_06 AC 135 ms
41,520 KB
testcase_07 AC 135 ms
41,692 KB
testcase_08 AC 135 ms
41,464 KB
testcase_09 AC 135 ms
41,292 KB
testcase_10 AC 135 ms
41,388 KB
testcase_11 AC 135 ms
41,612 KB
testcase_12 AC 134 ms
41,484 KB
testcase_13 AC 137 ms
41,388 KB
testcase_14 AC 138 ms
41,516 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
41,572 KB
testcase_19 AC 134 ms
41,428 KB
testcase_20 AC 137 ms
41,228 KB
testcase_21 WA -
testcase_22 AC 136 ms
41,564 KB
testcase_23 AC 133 ms
41,288 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 135 ms
41,236 KB
testcase_27 WA -
testcase_28 AC 135 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Average476 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int n=kb.nextInt();
		int a=kb.nextInt();
		int[] c={0,0,0,0,0,0,0,0,0,0,0};
		int sum=0;
		for(int i=1;i<=n;i++){
			c[i-1]=kb.nextInt();
			sum+=c[i-1];
		}
		if((double)sum/n==a){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		kb.close();

	}

}
0