結果

問題 No.1944 ∞
ユーザー ks2mks2m
提出日時 2022-05-21 00:12:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 65,900 KB
最終ジャッジ日時 2024-09-20 10:37:11
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,236 KB
testcase_01 AC 49 ms
50,216 KB
testcase_02 AC 50 ms
50,228 KB
testcase_03 AC 50 ms
49,936 KB
testcase_04 AC 50 ms
50,248 KB
testcase_05 AC 50 ms
50,096 KB
testcase_06 AC 50 ms
50,112 KB
testcase_07 AC 50 ms
49,844 KB
testcase_08 AC 51 ms
50,076 KB
testcase_09 AC 51 ms
50,348 KB
testcase_10 AC 53 ms
50,212 KB
testcase_11 AC 52 ms
50,240 KB
testcase_12 AC 52 ms
50,244 KB
testcase_13 AC 49 ms
50,028 KB
testcase_14 AC 49 ms
50,052 KB
testcase_15 AC 303 ms
65,900 KB
testcase_16 AC 109 ms
52,176 KB
testcase_17 WA -
testcase_18 AC 89 ms
52,040 KB
testcase_19 AC 64 ms
50,848 KB
testcase_20 AC 95 ms
51,960 KB
testcase_21 AC 95 ms
51,756 KB
testcase_22 AC 85 ms
51,444 KB
testcase_23 AC 63 ms
50,744 KB
testcase_24 AC 69 ms
51,396 KB
testcase_25 AC 95 ms
52,100 KB
testcase_26 AC 87 ms
51,612 KB
testcase_27 AC 90 ms
51,908 KB
testcase_28 AC 79 ms
51,276 KB
testcase_29 AC 62 ms
50,432 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 225 ms
63,792 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;
		if (n == 1) {
			long r2 = (long) r[0] * r[0];
			if (r2 == z) {
				System.out.println("Yes");
			} else {
				System.out.println("No");
			}
		} else {
			long s = 0;
			for (int i = 0; i < n; i++) {
				s += r[i];
			}
			s *= 2;

			if (s > Integer.MAX_VALUE || s * s >= z) {
				System.out.println("Yes");
			} else {
				System.out.println("No");
			}
		}
	}
}
0