結果

問題 No.1944 ∞
ユーザー lilictaka
提出日時 2022-05-20 22:05:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 102,708 KB
最終ジャッジ日時 2024-09-20 08:15:04
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int,input().split())
R = list(map(int,input().split()))
tmp = 2 * sum(R) - min(R)
if X ** 2 + Y ** 2 <= tmp ** 2:
    print('Yes')
else:
    print('No')
0