結果

問題 No.1944 ∞
ユーザー Kude
提出日時 2022-05-20 21:51:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 102,304 KB
最終ジャッジ日時 2025-06-20 00:27:30
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

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