結果

問題 No.476 正しくない平均
ユーザー fal_rndfal_rnd
提出日時 2017-01-27 22:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 2,984 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 42,044 KB
最終ジャッジ日時 2024-06-06 17:03:45
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,072 KB
testcase_01 AC 125 ms
41,228 KB
testcase_02 AC 139 ms
41,080 KB
testcase_03 AC 132 ms
41,772 KB
testcase_04 AC 128 ms
41,308 KB
testcase_05 AC 131 ms
41,360 KB
testcase_06 AC 132 ms
41,320 KB
testcase_07 AC 124 ms
41,068 KB
testcase_08 AC 141 ms
41,416 KB
testcase_09 AC 129 ms
41,300 KB
testcase_10 AC 130 ms
41,644 KB
testcase_11 AC 135 ms
41,400 KB
testcase_12 AC 133 ms
41,492 KB
testcase_13 AC 127 ms
41,236 KB
testcase_14 AC 133 ms
41,148 KB
testcase_15 AC 147 ms
41,632 KB
testcase_16 AC 131 ms
40,884 KB
testcase_17 AC 132 ms
41,100 KB
testcase_18 AC 136 ms
41,428 KB
testcase_19 AC 134 ms
41,712 KB
testcase_20 AC 122 ms
41,044 KB
testcase_21 AC 138 ms
40,904 KB
testcase_22 AC 134 ms
41,276 KB
testcase_23 AC 131 ms
41,568 KB
testcase_24 AC 125 ms
40,656 KB
testcase_25 AC 129 ms
41,744 KB
testcase_26 AC 116 ms
39,944 KB
testcase_27 AC 128 ms
41,316 KB
testcase_28 AC 135 ms
42,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicodercontest155;

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int n=s.nextInt();
		double a=s.nextDouble();
		long l=0;
		for(int i=0;i<n;i++) l+=s.nextLong();

		System.out.println((a==l*1.0/n)?"YES":"NO");
	}
}
0