結果

問題 No.1736 Princess vs. Dragoness
ユーザー rlangevinrlangevin
提出日時 2023-01-09 13:11:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-09 22:41:46
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 54 ms
65,792 KB
testcase_05 AC 45 ms
59,776 KB
testcase_06 AC 51 ms
63,616 KB
testcase_07 AC 79 ms
76,544 KB
testcase_08 AC 63 ms
69,120 KB
testcase_09 AC 73 ms
75,264 KB
testcase_10 AC 46 ms
60,672 KB
testcase_11 AC 83 ms
76,672 KB
testcase_12 AC 54 ms
64,256 KB
testcase_13 AC 54 ms
65,024 KB
testcase_14 AC 59 ms
67,840 KB
testcase_15 AC 47 ms
60,800 KB
testcase_16 AC 45 ms
59,392 KB
testcase_17 AC 57 ms
67,072 KB
testcase_18 AC 49 ms
63,744 KB
testcase_19 AC 52 ms
64,256 KB
testcase_20 AC 40 ms
52,864 KB
testcase_21 AC 61 ms
69,504 KB
testcase_22 AC 72 ms
72,832 KB
testcase_23 AC 54 ms
64,896 KB
testcase_24 AC 38 ms
52,736 KB
testcase_25 AC 56 ms
65,536 KB
testcase_26 AC 49 ms
62,080 KB
testcase_27 AC 55 ms
65,920 KB
testcase_28 AC 49 ms
61,824 KB
testcase_29 AC 48 ms
62,080 KB
testcase_30 AC 50 ms
62,208 KB
testcase_31 AC 51 ms
63,104 KB
testcase_32 AC 48 ms
61,952 KB
testcase_33 AC 37 ms
52,608 KB
testcase_34 AC 37 ms
52,608 KB
testcase_35 AC 39 ms
52,480 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