結果

問題 No.1944 ∞
ユーザー a aa a
提出日時 2022-10-01 17:56:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 10,636 KB
実行使用メモリ 29,876 KB
最終ジャッジ日時 2023-08-25 15:32:41
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,764 KB
testcase_01 AC 16 ms
7,848 KB
testcase_02 AC 15 ms
7,848 KB
testcase_03 WA -
testcase_04 AC 16 ms
7,856 KB
testcase_05 AC 16 ms
7,848 KB
testcase_06 AC 15 ms
7,920 KB
testcase_07 AC 16 ms
7,876 KB
testcase_08 AC 16 ms
7,808 KB
testcase_09 WA -
testcase_10 AC 15 ms
7,756 KB
testcase_11 AC 16 ms
7,812 KB
testcase_12 AC 18 ms
7,764 KB
testcase_13 AC 16 ms
7,876 KB
testcase_14 AC 15 ms
7,812 KB
testcase_15 AC 80 ms
29,876 KB
testcase_16 AC 21 ms
9,672 KB
testcase_17 AC 17 ms
8,904 KB
testcase_18 AC 18 ms
9,028 KB
testcase_19 AC 17 ms
8,252 KB
testcase_20 AC 18 ms
9,196 KB
testcase_21 AC 18 ms
9,184 KB
testcase_22 AC 17 ms
8,672 KB
testcase_23 AC 16 ms
8,316 KB
testcase_24 AC 17 ms
8,452 KB
testcase_25 AC 20 ms
9,208 KB
testcase_26 AC 19 ms
9,204 KB
testcase_27 AC 19 ms
9,208 KB
testcase_28 AC 19 ms
8,904 KB
testcase_29 AC 17 ms
8,256 KB
testcase_30 AC 19 ms
9,168 KB
testcase_31 AC 18 ms
8,860 KB
testcase_32 AC 18 ms
9,108 KB
testcase_33 AC 54 ms
11,356 KB
testcase_34 AC 54 ms
11,332 KB
testcase_35 AC 54 ms
11,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y=list(map(int,input().split()))
r=list(map(int,input().split()))
s=2*sum(r)-min(r)
if s*s>=x*x+y*y:
    print("Yes")
else:
    print("No")
0