結果

問題 No.1944 ∞
ユーザー ks2mks2m
提出日時 2022-05-21 00:05:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 900 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 76,708 KB
実行使用メモリ 55,260 KB
最終ジャッジ日時 2024-09-20 10:29:57
合計ジャッジ時間 6,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,972 KB
testcase_01 AC 45 ms
37,056 KB
testcase_02 AC 46 ms
36,796 KB
testcase_03 AC 47 ms
37,008 KB
testcase_04 WA -
testcase_05 AC 48 ms
36,464 KB
testcase_06 AC 46 ms
36,972 KB
testcase_07 AC 47 ms
36,464 KB
testcase_08 AC 47 ms
36,448 KB
testcase_09 AC 45 ms
36,584 KB
testcase_10 AC 47 ms
36,796 KB
testcase_11 AC 47 ms
36,760 KB
testcase_12 AC 46 ms
36,796 KB
testcase_13 AC 47 ms
36,812 KB
testcase_14 WA -
testcase_15 AC 281 ms
55,260 KB
testcase_16 AC 104 ms
40,276 KB
testcase_17 WA -
testcase_18 AC 94 ms
39,224 KB
testcase_19 AC 60 ms
37,928 KB
testcase_20 AC 90 ms
39,708 KB
testcase_21 AC 91 ms
39,196 KB
testcase_22 AC 85 ms
38,608 KB
testcase_23 AC 56 ms
37,176 KB
testcase_24 AC 71 ms
38,216 KB
testcase_25 AC 91 ms
39,540 KB
testcase_26 AC 85 ms
39,804 KB
testcase_27 AC 92 ms
39,116 KB
testcase_28 AC 81 ms
38,492 KB
testcase_29 AC 55 ms
37,164 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 215 ms
54,388 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		long x = Integer.parseInt(sa[1]);
		long y = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		int[] r = new int[n];
		for (int i = 0; i < n; i++) {
			r[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long z = x * x + y * y;
		long s = 0;
		int max = 0;
		for (int i = 0; i < n; i++) {
			s += r[i];
			max = Math.max(max, r[i]);
		}
		s *= 2;

		if (s > Integer.MAX_VALUE || s * s >= z) {
			s -= max * 2;
			long v = max - s;
			if (v <= 0 || v * v <= z) {
				System.out.println("Yes");
			} else {
				System.out.println("No");
			}
		} else {
			System.out.println("No");
		}
	}
}
0