結果

問題 No.1944 ∞
コンテスト
ユーザー Kude
提出日時 2022-05-20 21:51:54
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 80 ms / 2,000 ms
+ 617µs
コード長 340 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 225 ms
コンパイル使用メモリ 96,128 KB
実行使用メモリ 114,380 KB
最終ジャッジ日時 2026-07-12 07:42:40
合計ジャッジ時間 4,286 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def solve():
    n, x, y = map(int, input().split())
    r = list(map(int, input().split()))
    s = sum(r)
    for i in range(n):
        si = s - r[i]
        mn = max(0, r[i] - 2 * si)
        mx = r[i] + 2 * si
        if mn ** 2 <= x ** 2 + y ** 2 <= mx ** 2:
            return True
    return False

print('Yes' if solve() else 'No')
0