結果

問題 No.1944 ∞
コンテスト
ユーザー koba-e964
提出日時 2022-05-20 22:22:43
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 81 ms / 2,000 ms
+ 998µs
コード長 255 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 251 ms
コンパイル使用メモリ 95,852 KB
実行使用メモリ 114,152 KB
最終ジャッジ日時 2026-07-12 07:44:14
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#!/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