結果

問題 No.1736 Princess vs. Dragoness
ユーザー H20H20
提出日時 2021-11-12 21:42:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 81,636 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-11-25 17:39:10
合計ジャッジ時間 3,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,164 KB
testcase_01 AC 35 ms
52,816 KB
testcase_02 AC 36 ms
52,952 KB
testcase_03 WA -
testcase_04 AC 63 ms
70,524 KB
testcase_05 AC 52 ms
65,000 KB
testcase_06 AC 84 ms
76,736 KB
testcase_07 AC 98 ms
76,368 KB
testcase_08 AC 75 ms
74,320 KB
testcase_09 AC 90 ms
76,564 KB
testcase_10 AC 48 ms
63,084 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 70 ms
73,404 KB
testcase_14 WA -
testcase_15 AC 56 ms
65,472 KB
testcase_16 AC 69 ms
72,080 KB
testcase_17 WA -
testcase_18 AC 71 ms
71,800 KB
testcase_19 AC 68 ms
71,972 KB
testcase_20 AC 51 ms
64,204 KB
testcase_21 WA -
testcase_22 AC 94 ms
76,164 KB
testcase_23 AC 57 ms
69,572 KB
testcase_24 AC 44 ms
63,584 KB
testcase_25 AC 67 ms
73,672 KB
testcase_26 AC 72 ms
76,696 KB
testcase_27 AC 60 ms
70,272 KB
testcase_28 AC 59 ms
69,736 KB
testcase_29 AC 59 ms
68,524 KB
testcase_30 AC 68 ms
73,056 KB
testcase_31 AC 75 ms
76,128 KB
testcase_32 AC 83 ms
76,324 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
53,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N,A,B,X,Y = map(int, input().split())
H = list(map(int, input().split()))
HQ = []
for i in range(N):
    heapq.heappush(HQ,(-H[i],i))
for i in range(A):
    hi,i = heapq.heappop(HQ)
    H[i]-=X
    heapq.heappush(HQ,(-H[i],i))

for i in range(B):
    y = Y
    j = 0
    while y>0 and j<N:
        d = min(y,H[j])
        if d>0:
            H[j]-=d
            y-=d
        j+=1
cnt = 0
for i in range(N):
    if H[i]>0:
        cnt += -(-H[i]//X)
if cnt<=A:
    print('Yes')
else:
    print('No')
0