結果

問題 No.1736 Princess vs. Dragoness
ユーザー rlangevinrlangevin
提出日時 2023-01-09 13:07:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-09 22:38:24
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 46 ms
52,352 KB
testcase_02 AC 47 ms
52,736 KB
testcase_03 AC 56 ms
60,160 KB
testcase_04 AC 64 ms
65,280 KB
testcase_05 AC 55 ms
59,776 KB
testcase_06 AC 65 ms
63,744 KB
testcase_07 AC 94 ms
76,544 KB
testcase_08 AC 78 ms
69,872 KB
testcase_09 AC 97 ms
75,008 KB
testcase_10 AC 56 ms
59,904 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 62 ms
64,384 KB
testcase_14 AC 70 ms
67,200 KB
testcase_15 AC 52 ms
60,928 KB
testcase_16 AC 50 ms
59,392 KB
testcase_17 WA -
testcase_18 AC 59 ms
62,848 KB
testcase_19 AC 57 ms
63,488 KB
testcase_20 AC 48 ms
53,120 KB
testcase_21 AC 70 ms
69,120 KB
testcase_22 AC 76 ms
72,320 KB
testcase_23 AC 58 ms
64,384 KB
testcase_24 AC 41 ms
52,992 KB
testcase_25 AC 61 ms
65,664 KB
testcase_26 AC 53 ms
61,952 KB
testcase_27 AC 60 ms
65,920 KB
testcase_28 AC 53 ms
61,568 KB
testcase_29 AC 56 ms
62,464 KB
testcase_30 AC 53 ms
62,336 KB
testcase_31 AC 56 ms
62,848 KB
testcase_32 AC 52 ms
61,952 KB
testcase_33 WA -
testcase_34 AC 42 ms
52,480 KB
testcase_35 AC 42 ms
52,352 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