結果

問題 No.476 正しくない平均
ユーザー yamax3232yamax3232
提出日時 2017-02-15 20:40:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-09 12:37:42
合計ジャッジ時間 6,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,852 KB
testcase_01 AC 94 ms
52,308 KB
testcase_02 AC 108 ms
53,668 KB
testcase_03 AC 97 ms
52,880 KB
testcase_04 AC 105 ms
53,932 KB
testcase_05 AC 105 ms
52,968 KB
testcase_06 AC 98 ms
52,732 KB
testcase_07 AC 111 ms
53,692 KB
testcase_08 AC 105 ms
53,000 KB
testcase_09 AC 113 ms
54,120 KB
testcase_10 AC 103 ms
52,616 KB
testcase_11 AC 102 ms
53,008 KB
testcase_12 AC 105 ms
53,064 KB
testcase_13 AC 107 ms
53,220 KB
testcase_14 AC 106 ms
53,860 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 111 ms
52,760 KB
testcase_19 AC 98 ms
52,840 KB
testcase_20 AC 117 ms
53,948 KB
testcase_21 WA -
testcase_22 AC 99 ms
52,612 KB
testcase_23 AC 114 ms
53,888 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 113 ms
54,212 KB
testcase_27 WA -
testcase_28 AC 98 ms
54,056 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