結果

問題 No.1736 Princess vs. Dragoness
ユーザー rlangevinrlangevin
提出日時 2023-01-09 13:07:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-12-17 17:09:47
合計ジャッジ時間 3,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,272 KB
testcase_01 AC 37 ms
53,092 KB
testcase_02 AC 38 ms
52,540 KB
testcase_03 AC 48 ms
60,060 KB
testcase_04 AC 56 ms
66,752 KB
testcase_05 AC 48 ms
60,456 KB
testcase_06 AC 51 ms
64,220 KB
testcase_07 AC 80 ms
76,532 KB
testcase_08 AC 67 ms
70,412 KB
testcase_09 AC 76 ms
75,084 KB
testcase_10 AC 47 ms
61,632 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
65,668 KB
testcase_14 AC 61 ms
68,208 KB
testcase_15 AC 46 ms
61,764 KB
testcase_16 AC 46 ms
60,344 KB
testcase_17 WA -
testcase_18 AC 52 ms
64,796 KB
testcase_19 AC 54 ms
64,164 KB
testcase_20 AC 41 ms
54,872 KB
testcase_21 AC 63 ms
69,812 KB
testcase_22 AC 70 ms
73,260 KB
testcase_23 AC 54 ms
65,156 KB
testcase_24 AC 39 ms
52,952 KB
testcase_25 AC 57 ms
66,524 KB
testcase_26 AC 49 ms
62,436 KB
testcase_27 AC 56 ms
66,304 KB
testcase_28 AC 48 ms
61,976 KB
testcase_29 AC 49 ms
62,528 KB
testcase_30 AC 49 ms
63,300 KB
testcase_31 AC 53 ms
64,032 KB
testcase_32 AC 49 ms
63,624 KB
testcase_33 WA -
testcase_34 AC 38 ms
53,572 KB
testcase_35 AC 39 ms
54,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N, A, B, X, Y = map(int, input().split())
H = list(map(int, input().split()))
H = list(map(lambda x : -x, H))
heapify(H)
while A:
    v = -heappop(H)
    q = v // X
    if q:
        if q >= A:
            v -= q * X
            q -= A
            A = 0
            heappush(H, -v)
        else:
            A -= q
            heappush(H, 0)
    else:
        A -= 1
        heappush(H, 0)
       
if -sum(H) <= B * Y:
    print("Yes")
else:
    print("No")
0