結果

問題 No.1736 Princess vs. Dragoness
ユーザー mahiro72mahiro72
提出日時 2021-11-12 22:43:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 62,672 KB
最終ジャッジ日時 2024-05-04 10:15:53
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,996 KB
testcase_01 WA -
testcase_02 AC 31 ms
52,420 KB
testcase_03 WA -
testcase_04 AC 38 ms
61,228 KB
testcase_05 AC 32 ms
53,360 KB
testcase_06 AC 40 ms
62,052 KB
testcase_07 AC 38 ms
60,160 KB
testcase_08 AC 38 ms
60,192 KB
testcase_09 AC 37 ms
60,428 KB
testcase_10 AC 31 ms
53,136 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
60,740 KB
testcase_14 WA -
testcase_15 AC 38 ms
59,972 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
60,604 KB
testcase_19 AC 36 ms
59,868 KB
testcase_20 AC 32 ms
54,384 KB
testcase_21 WA -
testcase_22 AC 37 ms
61,872 KB
testcase_23 AC 37 ms
59,800 KB
testcase_24 AC 32 ms
52,560 KB
testcase_25 WA -
testcase_26 AC 36 ms
59,668 KB
testcase_27 AC 41 ms
61,316 KB
testcase_28 AC 37 ms
59,632 KB
testcase_29 AC 38 ms
61,220 KB
testcase_30 AC 38 ms
61,508 KB
testcase_31 WA -
testcase_32 AC 37 ms
60,548 KB
testcase_33 AC 32 ms
52,308 KB
testcase_34 WA -
testcase_35 AC 37 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B,X,Y = map(int,input().split())
H = list(map(int,input().split()))
H.sort(reverse=True)

p = Y*B
for i in range(N):
    if A>0:
        H[i]-=X
        A-=1

    if H[i]>0 and p>0:
        d = min(p,H[i])
        H[i]-=d
        p-=d

print('Yes'if sum(H)<=0 else 'No')
0