結果

問題 No.476 正しくない平均
ユーザー yuiyui
提出日時 2017-02-20 10:27:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-06-09 14:46:02
合計ジャッジ時間 6,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,720 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 98 ms
52,556 KB
testcase_04 AC 108 ms
54,072 KB
testcase_05 WA -
testcase_06 AC 100 ms
52,584 KB
testcase_07 AC 103 ms
52,880 KB
testcase_08 AC 103 ms
52,964 KB
testcase_09 AC 114 ms
54,052 KB
testcase_10 AC 113 ms
53,932 KB
testcase_11 WA -
testcase_12 AC 113 ms
54,136 KB
testcase_13 AC 101 ms
53,040 KB
testcase_14 AC 115 ms
53,920 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 119 ms
54,044 KB
testcase_19 AC 109 ms
53,732 KB
testcase_20 AC 106 ms
52,716 KB
testcase_21 WA -
testcase_22 AC 108 ms
53,028 KB
testcase_23 AC 106 ms
52,924 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 116 ms
53,964 KB
testcase_27 WA -
testcase_28 AC 109 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

    	Scanner sc = new Scanner(System.in);
    	int num = sc.nextInt();
    	int av = sc.nextInt();
    	int ar[] = new int[num];
    	int ans = 0;
    	for(int i=0;i<num;i++){
    		ans += sc.nextInt();
    	}
    	int ret = ans/num;

    	if(ret==av){
    		System.out.println("YES");
    	}else{
    		System.out.println("NO");
    	}
    }

}
0