結果

問題 No.476 正しくない平均
ユーザー kohaku_kohaku
提出日時 2017-01-27 23:44:09
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 43,252 KB
最終ジャッジ日時 2024-12-23 17:48:55
合計ジャッジ時間 8,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 20 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static long mod = (long)Math.pow(10,6);
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int a = sc.nextInt();
        long sum=0;
        for(int i=0; i<N; i++){
            int tmp = sc.nextInt();
            sum+=tmp;
        }
        double ave = sum/N;
        if(ave==a){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0