結果

問題 No.476 正しくない平均
ユーザー swdamdrswdamdr
提出日時 2017-01-31 11:01:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 3,250 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-06 08:26:45
合計ジャッジ時間 8,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,196 KB
testcase_01 AC 145 ms
54,012 KB
testcase_02 AC 148 ms
54,388 KB
testcase_03 AC 148 ms
53,860 KB
testcase_04 AC 147 ms
54,196 KB
testcase_05 AC 148 ms
54,440 KB
testcase_06 AC 145 ms
53,936 KB
testcase_07 AC 147 ms
54,212 KB
testcase_08 AC 146 ms
54,332 KB
testcase_09 AC 134 ms
53,216 KB
testcase_10 AC 148 ms
54,220 KB
testcase_11 AC 153 ms
54,016 KB
testcase_12 AC 149 ms
54,348 KB
testcase_13 AC 149 ms
53,684 KB
testcase_14 AC 147 ms
54,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 149 ms
54,320 KB
testcase_19 AC 146 ms
54,044 KB
testcase_20 AC 144 ms
54,256 KB
testcase_21 WA -
testcase_22 AC 144 ms
54,024 KB
testcase_23 AC 146 ms
53,888 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 144 ms
54,388 KB
testcase_27 WA -
testcase_28 AC 146 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Sample01 {

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