結果

問題 No.1944 ∞
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-20 22:01:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-20 08:09:30
合計ジャッジ時間 3,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 42 ms
53,120 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 47 ms
53,248 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 WA -
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 41 ms
53,120 KB
testcase_12 AC 41 ms
53,504 KB
testcase_13 AC 42 ms
53,376 KB
testcase_14 AC 42 ms
53,120 KB
testcase_15 AC 83 ms
103,936 KB
testcase_16 AC 48 ms
62,848 KB
testcase_17 WA -
testcase_18 AC 47 ms
62,080 KB
testcase_19 AC 44 ms
60,800 KB
testcase_20 WA -
testcase_21 AC 49 ms
61,696 KB
testcase_22 AC 46 ms
61,312 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 46 ms
61,184 KB
testcase_29 AC 45 ms
60,288 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 75 ms
98,304 KB
testcase_34 WA -
testcase_35 AC 76 ms
97,832 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