結果

問題 No.1736 Princess vs. Dragoness
ユーザー rlangevinrlangevin
提出日時 2023-01-09 13:11:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 76,636 KB
最終ジャッジ日時 2024-12-17 17:16:37
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,052 KB
testcase_01 AC 39 ms
54,276 KB
testcase_02 AC 39 ms
52,748 KB
testcase_03 AC 46 ms
60,336 KB
testcase_04 AC 56 ms
65,908 KB
testcase_05 AC 47 ms
60,832 KB
testcase_06 AC 53 ms
65,064 KB
testcase_07 AC 83 ms
76,636 KB
testcase_08 AC 65 ms
69,584 KB
testcase_09 AC 77 ms
75,224 KB
testcase_10 AC 49 ms
60,180 KB
testcase_11 AC 89 ms
76,484 KB
testcase_12 AC 54 ms
66,116 KB
testcase_13 AC 57 ms
65,944 KB
testcase_14 AC 61 ms
68,712 KB
testcase_15 AC 47 ms
61,536 KB
testcase_16 AC 46 ms
59,844 KB
testcase_17 AC 60 ms
67,864 KB
testcase_18 AC 49 ms
64,128 KB
testcase_19 AC 53 ms
65,860 KB
testcase_20 AC 40 ms
53,744 KB
testcase_21 AC 63 ms
70,292 KB
testcase_22 AC 71 ms
73,636 KB
testcase_23 AC 55 ms
66,136 KB
testcase_24 AC 40 ms
54,088 KB
testcase_25 AC 57 ms
66,260 KB
testcase_26 AC 50 ms
63,080 KB
testcase_27 AC 57 ms
66,148 KB
testcase_28 AC 50 ms
62,112 KB
testcase_29 AC 49 ms
63,476 KB
testcase_30 AC 49 ms
62,432 KB
testcase_31 AC 52 ms
64,376 KB
testcase_32 AC 50 ms
63,008 KB
testcase_33 AC 39 ms
52,772 KB
testcase_34 AC 39 ms
53,740 KB
testcase_35 AC 37 ms
52,400 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
            v -= q * X
            heappush(H, -v)
    else:
        A -= 1
        heappush(H, 0)
       
if -sum(H) <= B * Y:
    print("Yes")
else:
    print("No")
0