結果

問題 No.1944 ∞
ユーザー koba-e964koba-e964
提出日時 2022-05-20 22:22:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 102,568 KB
最終ジャッジ日時 2024-09-20 08:37:02
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,584 KB
testcase_01 AC 36 ms
51,836 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 35 ms
52,476 KB
testcase_04 AC 35 ms
52,692 KB
testcase_05 AC 35 ms
52,360 KB
testcase_06 AC 35 ms
52,744 KB
testcase_07 AC 35 ms
51,876 KB
testcase_08 AC 36 ms
52,644 KB
testcase_09 AC 36 ms
53,208 KB
testcase_10 AC 36 ms
52,296 KB
testcase_11 AC 37 ms
52,000 KB
testcase_12 AC 37 ms
52,636 KB
testcase_13 AC 37 ms
52,868 KB
testcase_14 AC 37 ms
52,680 KB
testcase_15 AC 80 ms
102,568 KB
testcase_16 AC 43 ms
61,796 KB
testcase_17 AC 42 ms
60,756 KB
testcase_18 AC 43 ms
60,400 KB
testcase_19 AC 41 ms
58,500 KB
testcase_20 AC 42 ms
60,480 KB
testcase_21 AC 43 ms
60,564 KB
testcase_22 AC 41 ms
59,728 KB
testcase_23 AC 40 ms
59,028 KB
testcase_24 AC 41 ms
60,620 KB
testcase_25 AC 43 ms
60,424 KB
testcase_26 AC 41 ms
60,612 KB
testcase_27 AC 44 ms
61,116 KB
testcase_28 AC 39 ms
60,676 KB
testcase_29 AC 39 ms
58,828 KB
testcase_30 AC 42 ms
61,380 KB
testcase_31 AC 42 ms
59,780 KB
testcase_32 AC 42 ms
60,404 KB
testcase_33 AC 72 ms
97,076 KB
testcase_34 AC 70 ms
96,364 KB
testcase_35 AC 71 ms
96,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

n, x, y = map(int, input().split())
r = list(map(int, input().split()))
r.sort()
t = r[0]
s = sum(r) - t
d = x * x + y * y
lo = max(0, t - 2 * s)
if lo * lo <= d <= (2 * s + t) * (2 * s + t):
    print('Yes')
else:
    print('No')
0