結果

問題 No.1944 ∞
ユーザー koba-e964koba-e964
提出日時 2022-05-20 22:15:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 104,176 KB
最終ジャッジ日時 2024-09-20 08:26:46
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
53,768 KB
testcase_02 AC 34 ms
51,760 KB
testcase_03 WA -
testcase_04 AC 34 ms
53,376 KB
testcase_05 AC 35 ms
52,816 KB
testcase_06 AC 35 ms
53,452 KB
testcase_07 AC 35 ms
52,136 KB
testcase_08 AC 36 ms
52,272 KB
testcase_09 WA -
testcase_10 AC 35 ms
53,532 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,596 KB
testcase_13 AC 36 ms
52,468 KB
testcase_14 AC 37 ms
52,140 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
60,024 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
60,232 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
58,348 KB
testcase_24 AC 38 ms
59,608 KB
testcase_25 AC 41 ms
61,020 KB
testcase_26 AC 42 ms
62,328 KB
testcase_27 AC 40 ms
60,672 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 40 ms
61,212 KB
testcase_31 AC 41 ms
61,372 KB
testcase_32 AC 43 ms
60,280 KB
testcase_33 WA -
testcase_34 AC 67 ms
96,424 KB
testcase_35 AC 68 ms
97,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

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