結果

問題 No.476 正しくない平均
ユーザー FVRChanFVRChan
提出日時 2017-10-03 10:02:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 6,032 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-11-16 05:32:40
合計ジャッジ時間 7,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,840 KB
testcase_01 AC 129 ms
53,800 KB
testcase_02 AC 131 ms
54,068 KB
testcase_03 AC 130 ms
54,336 KB
testcase_04 AC 127 ms
54,076 KB
testcase_05 AC 131 ms
54,144 KB
testcase_06 AC 128 ms
53,664 KB
testcase_07 AC 116 ms
52,652 KB
testcase_08 AC 131 ms
53,960 KB
testcase_09 AC 129 ms
53,972 KB
testcase_10 AC 130 ms
53,948 KB
testcase_11 AC 130 ms
54,004 KB
testcase_12 AC 132 ms
53,888 KB
testcase_13 AC 131 ms
53,760 KB
testcase_14 AC 124 ms
53,852 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 133 ms
54,188 KB
testcase_19 AC 130 ms
53,700 KB
testcase_20 AC 117 ms
52,880 KB
testcase_21 WA -
testcase_22 AC 131 ms
54,152 KB
testcase_23 AC 132 ms
54,272 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 130 ms
53,892 KB
testcase_27 WA -
testcase_28 AC 128 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt(),a=sc.nextInt(),sum=0;
		for(int i=0;i<n;i++){
			sum+=sc.nextInt();
		}double abe=sum*1.0/n;
		if(abe == a)System.out.println("YES");
		else System.out.println("NO");
	}
}
0