結果

問題 No.1736 Princess vs. Dragoness
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 21:39:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 76,852 KB
最終ジャッジ日時 2024-05-04 07:46:44
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,248 KB
testcase_01 AC 37 ms
53,076 KB
testcase_02 AC 39 ms
53,232 KB
testcase_03 AC 53 ms
64,248 KB
testcase_04 WA -
testcase_05 AC 39 ms
53,224 KB
testcase_06 AC 75 ms
75,112 KB
testcase_07 AC 82 ms
76,656 KB
testcase_08 AC 75 ms
73,388 KB
testcase_09 AC 77 ms
74,568 KB
testcase_10 AC 39 ms
52,976 KB
testcase_11 AC 85 ms
76,636 KB
testcase_12 AC 58 ms
69,184 KB
testcase_13 WA -
testcase_14 AC 70 ms
75,456 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 67 ms
74,444 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 47 ms
63,824 KB
testcase_21 AC 65 ms
72,880 KB
testcase_22 AC 66 ms
73,176 KB
testcase_23 AC 77 ms
76,296 KB
testcase_24 AC 40 ms
59,700 KB
testcase_25 AC 62 ms
69,112 KB
testcase_26 AC 79 ms
76,696 KB
testcase_27 AC 78 ms
76,332 KB
testcase_28 AC 67 ms
74,224 KB
testcase_29 AC 66 ms
71,168 KB
testcase_30 AC 70 ms
74,000 KB
testcase_31 AC 74 ms
75,796 KB
testcase_32 AC 78 ms
76,304 KB
testcase_33 AC 37 ms
54,184 KB
testcase_34 AC 35 ms
52,556 KB
testcase_35 AC 36 ms
53,428 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)
for i in range(a):
    if q:
        v = heapq.heappop(q)
        v = -v
        if v > x:
            v -= x
            heapq.heappush(q, -v)
    else:
        break
if not q:
    print('Yes')
    exit()
s = 0
while  q:
    v = heapq.heappop(q)
    v = -v
    s += v
if s <= y*b:
    print('Yes')
else:
    print('No')
0