結果

問題 No.476 正しくない平均
ユーザー FVRChanFVRChan
提出日時 2017-10-03 10:03:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-11-16 05:33:01
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,216 KB
testcase_01 WA -
testcase_02 AC 115 ms
41,364 KB
testcase_03 AC 112 ms
41,208 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 124 ms
40,984 KB
testcase_07 AC 109 ms
39,668 KB
testcase_08 AC 123 ms
40,992 KB
testcase_09 AC 117 ms
41,404 KB
testcase_10 AC 112 ms
39,932 KB
testcase_11 WA -
testcase_12 AC 120 ms
41,572 KB
testcase_13 AC 123 ms
41,392 KB
testcase_14 AC 112 ms
41,308 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 113 ms
41,216 KB
testcase_19 AC 121 ms
41,480 KB
testcase_20 AC 120 ms
40,956 KB
testcase_21 WA -
testcase_22 AC 114 ms
41,228 KB
testcase_23 AC 114 ms
40,952 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 101 ms
41,072 KB
testcase_27 WA -
testcase_28 AC 122 ms
41,088 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=Math.round(sum*1.0/n);
		if(abe == a)System.out.println("YES");
		else System.out.println("NO");
	}
}
0