結果

問題 No.476 正しくない平均
ユーザー cande398cande398
提出日時 2017-10-08 14:58:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-11-17 05:31:26
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,464 KB
testcase_01 AC 130 ms
41,384 KB
testcase_02 AC 126 ms
41,688 KB
testcase_03 AC 124 ms
41,432 KB
testcase_04 AC 131 ms
41,448 KB
testcase_05 AC 121 ms
40,532 KB
testcase_06 AC 116 ms
40,152 KB
testcase_07 AC 126 ms
41,276 KB
testcase_08 AC 126 ms
41,788 KB
testcase_09 AC 124 ms
41,060 KB
testcase_10 AC 117 ms
40,588 KB
testcase_11 AC 127 ms
41,428 KB
testcase_12 AC 124 ms
40,680 KB
testcase_13 AC 121 ms
40,916 KB
testcase_14 AC 129 ms
41,640 KB
testcase_15 AC 139 ms
41,784 KB
testcase_16 AC 127 ms
40,796 KB
testcase_17 AC 131 ms
41,460 KB
testcase_18 AC 118 ms
41,008 KB
testcase_19 AC 131 ms
41,208 KB
testcase_20 AC 128 ms
41,324 KB
testcase_21 AC 127 ms
41,612 KB
testcase_22 AC 133 ms
41,400 KB
testcase_23 AC 132 ms
41,668 KB
testcase_24 AC 120 ms
40,396 KB
testcase_25 AC 131 ms
41,416 KB
testcase_26 AC 122 ms
40,504 KB
testcase_27 AC 116 ms
40,400 KB
testcase_28 AC 134 ms
41,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    double sum = 0;
    Scanner sc = new Scanner(System.in);
    int num = sc.nextInt();
    double ans = sc.nextDouble();
    for(int i=0;i<num;i++){
      sum += sc.nextDouble();
    }
    if(sum/num == ans)System.out.println("YES");
    else System.out.println("NO");
  }
}
0