結果

問題 No.1944 ∞
ユーザー H20H20
提出日時 2022-04-02 19:20:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 103,272 KB
最終ジャッジ日時 2024-06-26 20:41:41
合計ジャッジ時間 2,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,384 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 39 ms
53,748 KB
testcase_03 AC 39 ms
53,068 KB
testcase_04 AC 38 ms
52,368 KB
testcase_05 AC 39 ms
52,344 KB
testcase_06 AC 39 ms
52,124 KB
testcase_07 AC 39 ms
52,556 KB
testcase_08 AC 39 ms
52,548 KB
testcase_09 AC 38 ms
51,992 KB
testcase_10 AC 39 ms
52,840 KB
testcase_11 AC 39 ms
53,488 KB
testcase_12 AC 38 ms
52,652 KB
testcase_13 AC 37 ms
52,876 KB
testcase_14 AC 38 ms
53,300 KB
testcase_15 AC 83 ms
103,272 KB
testcase_16 AC 43 ms
63,376 KB
testcase_17 AC 43 ms
61,464 KB
testcase_18 AC 42 ms
62,196 KB
testcase_19 AC 42 ms
60,028 KB
testcase_20 AC 43 ms
61,720 KB
testcase_21 AC 43 ms
60,476 KB
testcase_22 AC 44 ms
60,100 KB
testcase_23 AC 43 ms
59,548 KB
testcase_24 AC 43 ms
61,088 KB
testcase_25 AC 42 ms
62,112 KB
testcase_26 AC 45 ms
62,000 KB
testcase_27 AC 44 ms
60,936 KB
testcase_28 AC 44 ms
60,888 KB
testcase_29 AC 42 ms
59,416 KB
testcase_30 AC 42 ms
60,792 KB
testcase_31 AC 42 ms
61,036 KB
testcase_32 AC 43 ms
62,784 KB
testcase_33 AC 75 ms
96,544 KB
testcase_34 AC 75 ms
97,136 KB
testcase_35 AC 75 ms
97,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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