結果

問題 No.476 正しくない平均
ユーザー fukuseifukusei
提出日時 2017-05-20 22:16:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 3,219 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-09-19 00:31:00
合計ジャッジ時間 8,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,984 KB
testcase_01 AC 129 ms
54,076 KB
testcase_02 AC 133 ms
53,876 KB
testcase_03 AC 132 ms
54,008 KB
testcase_04 AC 131 ms
54,124 KB
testcase_05 AC 132 ms
54,176 KB
testcase_06 AC 129 ms
53,884 KB
testcase_07 AC 127 ms
53,964 KB
testcase_08 AC 129 ms
53,968 KB
testcase_09 AC 136 ms
54,096 KB
testcase_10 AC 136 ms
53,788 KB
testcase_11 AC 133 ms
53,996 KB
testcase_12 AC 132 ms
53,996 KB
testcase_13 AC 135 ms
54,148 KB
testcase_14 AC 134 ms
54,188 KB
testcase_15 AC 133 ms
53,876 KB
testcase_16 AC 136 ms
54,104 KB
testcase_17 AC 134 ms
54,040 KB
testcase_18 AC 135 ms
54,088 KB
testcase_19 AC 132 ms
54,104 KB
testcase_20 AC 139 ms
53,888 KB
testcase_21 AC 133 ms
54,192 KB
testcase_22 AC 134 ms
54,024 KB
testcase_23 AC 131 ms
54,112 KB
testcase_24 AC 134 ms
54,136 KB
testcase_25 AC 132 ms
54,188 KB
testcase_26 AC 129 ms
54,192 KB
testcase_27 AC 134 ms
54,008 KB
testcase_28 AC 130 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long n = sc.nextInt();
		long a = sc.nextInt();
		long x = 0;
		
		for(int i=0; i<n; i++){
			x += sc.nextInt();
		}
		
		if((double)x / n == a){
			System.out.println("YES");
		}
		else{
			System.out.println("NO");
		}
	}
}
0