結果

問題 No.1944 ∞
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-20 22:01:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 81,552 KB
実行使用メモリ 103,768 KB
最終ジャッジ日時 2023-10-20 12:40:40
合計ジャッジ時間 3,359 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,424 KB
testcase_01 AC 42 ms
53,424 KB
testcase_02 AC 43 ms
53,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
53,424 KB
testcase_06 AC 42 ms
53,424 KB
testcase_07 AC 42 ms
53,424 KB
testcase_08 AC 42 ms
53,424 KB
testcase_09 WA -
testcase_10 AC 43 ms
53,424 KB
testcase_11 AC 43 ms
53,424 KB
testcase_12 AC 42 ms
53,424 KB
testcase_13 AC 43 ms
53,424 KB
testcase_14 AC 42 ms
53,424 KB
testcase_15 AC 89 ms
103,768 KB
testcase_16 AC 49 ms
63,812 KB
testcase_17 WA -
testcase_18 AC 48 ms
61,764 KB
testcase_19 AC 47 ms
61,764 KB
testcase_20 WA -
testcase_21 AC 47 ms
61,764 KB
testcase_22 AC 47 ms
61,764 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 47 ms
61,764 KB
testcase_29 AC 47 ms
61,764 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 81 ms
98,032 KB
testcase_34 WA -
testcase_35 AC 80 ms
98,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

from collections import Counter

input_count = 0
N, X, Y = mi()
R = mi()

sr = sum(R)*2 - min(R)

if abs(X)<=sr and abs(Y)<=sr:
    print("Yes")
else:
    print("No")
0