結果

問題 No.1736 Princess vs. Dragoness
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 21:42:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 77,200 KB
最終ジャッジ日時 2024-05-04 07:53:26
合計ジャッジ時間 3,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 WA -
testcase_04 AC 56 ms
68,224 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 62 ms
71,552 KB
testcase_07 AC 70 ms
76,288 KB
testcase_08 AC 55 ms
68,864 KB
testcase_09 AC 65 ms
73,728 KB
testcase_10 AC 34 ms
52,608 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 73 ms
76,672 KB
testcase_14 WA -
testcase_15 AC 56 ms
66,816 KB
testcase_16 AC 49 ms
63,360 KB
testcase_17 WA -
testcase_18 AC 62 ms
71,040 KB
testcase_19 AC 59 ms
69,376 KB
testcase_20 AC 47 ms
63,104 KB
testcase_21 WA -
testcase_22 AC 61 ms
71,680 KB
testcase_23 AC 73 ms
76,288 KB
testcase_24 AC 40 ms
59,008 KB
testcase_25 AC 56 ms
67,072 KB
testcase_26 AC 77 ms
76,416 KB
testcase_27 AC 77 ms
76,800 KB
testcase_28 AC 62 ms
71,040 KB
testcase_29 AC 62 ms
72,832 KB
testcase_30 AC 61 ms
71,680 KB
testcase_31 AC 51 ms
64,000 KB
testcase_32 AC 82 ms
76,416 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, a, b, x, y = map(int, input().split())
H = list(map(int, input().split()))

q = []
for h in H:
    q.append(-h)

import heapq
heapq.heapify(H)
cnt = 0
for i in range(a):
    if q:
        v = heapq.heappop(q)
        v = -v
        if v > x:
            v -= x
            heapq.heappush(q, -v)
            cnt += 1
        else:
            break
    else:
        break
if not q:
    print('Yes')
    exit()
s = 0
while  q:
    v = heapq.heappop(q)
    v = -v
    s += v
if s <= y*b+x*(a-cnt):
    print('Yes')
else:
    print('No')
0