結果

問題 No.1736 Princess vs. Dragoness
ユーザー flippergoflippergo
提出日時 2024-12-29 11:10:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,044 KB
最終ジャッジ日時 2024-12-29 11:10:56
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 54 ms
62,720 KB
testcase_04 AC 68 ms
68,864 KB
testcase_05 AC 42 ms
52,864 KB
testcase_06 AC 109 ms
76,580 KB
testcase_07 AC 104 ms
76,288 KB
testcase_08 AC 72 ms
72,064 KB
testcase_09 AC 80 ms
74,624 KB
testcase_10 AC 40 ms
52,864 KB
testcase_11 AC 105 ms
76,672 KB
testcase_12 AC 85 ms
76,416 KB
testcase_13 AC 107 ms
76,608 KB
testcase_14 AC 96 ms
76,528 KB
testcase_15 AC 75 ms
71,680 KB
testcase_16 AC 100 ms
77,044 KB
testcase_17 AC 105 ms
76,288 KB
testcase_18 AC 110 ms
76,672 KB
testcase_19 AC 139 ms
76,544 KB
testcase_20 AC 75 ms
72,064 KB
testcase_21 AC 77 ms
71,680 KB
testcase_22 AC 80 ms
74,524 KB
testcase_23 AC 72 ms
71,552 KB
testcase_24 AC 74 ms
71,424 KB
testcase_25 AC 70 ms
69,504 KB
testcase_26 AC 85 ms
76,416 KB
testcase_27 AC 64 ms
68,864 KB
testcase_28 AC 64 ms
68,608 KB
testcase_29 AC 67 ms
69,888 KB
testcase_30 AC 89 ms
76,544 KB
testcase_31 AC 88 ms
76,288 KB
testcase_32 AC 110 ms
76,288 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,A,B,X,Y = map(int,input().split())
H = list(map(int,input().split()))
heap = []
for i in range(N):
    heapq.heappush(heap,-H[i])
cnt = 0
while heap and cnt<A:
    h = -heapq.heappop(heap)
    h -= X
    cnt += 1
    if h>0:
        heapq.heappush(heap,-h)
for _ in range(B):
    p = Y
    A = []
    while p>0 and heap:
        h = -heapq.heappop(heap)
        d = min(h,p)
        h -= d
        p -= d
        if h>0:
            A.append(h)
    for a in A:
        heapq.heappush(heap,-a)
if heap:
    print("No")
else:
    print("Yes")
0