結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-12 21:55:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,001 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 136,072 KB
最終ジャッジ日時 2024-05-04 08:27:55
合計ジャッジ時間 34,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,608 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 47 ms
52,352 KB
testcase_03 AC 63 ms
71,552 KB
testcase_04 AC 1,411 ms
114,676 KB
testcase_05 AC 1,900 ms
123,268 KB
testcase_06 AC 659 ms
121,224 KB
testcase_07 AC 63 ms
72,832 KB
testcase_08 AC 253 ms
93,792 KB
testcase_09 AC 296 ms
102,128 KB
testcase_10 AC 929 ms
85,888 KB
testcase_11 AC 578 ms
87,424 KB
testcase_12 AC 69 ms
67,968 KB
testcase_13 AC 992 ms
107,904 KB
testcase_14 AC 1,197 ms
106,336 KB
testcase_15 AC 940 ms
117,004 KB
testcase_16 AC 1,105 ms
85,248 KB
testcase_17 AC 609 ms
97,156 KB
testcase_18 AC 1,160 ms
88,440 KB
testcase_19 AC 203 ms
81,664 KB
testcase_20 AC 204 ms
81,664 KB
testcase_21 AC 473 ms
94,100 KB
testcase_22 AC 935 ms
111,796 KB
testcase_23 AC 1,582 ms
132,736 KB
testcase_24 AC 1,742 ms
123,144 KB
testcase_25 AC 1,889 ms
110,356 KB
testcase_26 AC 1,646 ms
136,072 KB
testcase_27 AC 2,001 ms
117,256 KB
testcase_28 AC 1,676 ms
134,908 KB
testcase_29 AC 1,921 ms
118,276 KB
testcase_30 AC 1,638 ms
126,224 KB
testcase_31 AC 1,689 ms
134,612 KB
testcase_32 AC 1,963 ms
123,772 KB
testcase_33 AC 83 ms
71,552 KB
testcase_34 AC 49 ms
58,752 KB
testcase_35 AC 95 ms
75,904 KB
testcase_36 AC 89 ms
75,648 KB
testcase_37 AC 64 ms
64,512 KB
testcase_38 AC 95 ms
75,904 KB
testcase_39 AC 86 ms
75,648 KB
testcase_40 AC 73 ms
67,840 KB
testcase_41 AC 97 ms
75,776 KB
testcase_42 AC 86 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,a,b,x,y = map(int,input().split())
H = list(map(int,input().split()))

def calc(k):
    h = []
    for i in H:
        if i <= k:
            continue
        heappush(h,-i+k)

    for i in range(a):
        if h:
            num = -heappop(h)
            num -= x
            if num <= 0:
                continue
            heappush(h,-num)

    count = -sum(h)
    if count <= b*y:
        return 1
    return 0


l = -1
r = 10**10
while r > l+1:
    m = (r+l)//2
    if calc(m):
        r = m
    else:
        l = m
print(r)
0