結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:31:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 527 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 131,056 KB
最終ジャッジ日時 2024-05-04 09:47:43
合計ジャッジ時間 8,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 49 ms
58,496 KB
testcase_03 AC 44 ms
52,864 KB
testcase_04 AC 2,850 ms
124,936 KB
testcase_05 TLE -
testcase_06 AC 1,661 ms
120,440 KB
testcase_07 AC 44 ms
52,608 KB
testcase_08 AC 976 ms
100,384 KB
testcase_09 AC 1,479 ms
116,780 KB
testcase_10 AC 1,584 ms
92,928 KB
testcase_11 AC 938 ms
88,064 KB
testcase_12 AC 227 ms
77,640 KB
testcase_13 AC 1,844 ms
104,796 KB
testcase_14 AC 2,272 ms
112,900 KB
testcase_15 AC 2,290 ms
125,196 KB
testcase_16 AC 1,485 ms
87,296 KB
testcase_17 AC 1,196 ms
98,020 KB
testcase_18 AC 1,963 ms
96,196 KB
testcase_19 AC 975 ms
97,480 KB
testcase_20 AC 503 ms
84,864 KB
testcase_21 AC 1,703 ms
119,544 KB
testcase_22 AC 2,142 ms
119,016 KB
testcase_23 AC 2,954 ms
124,156 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2,984 ms
126,356 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 98 ms
75,992 KB
testcase_34 AC 44 ms
52,608 KB
testcase_35 AC 103 ms
76,288 KB
testcase_36 AC 96 ms
76,544 KB
testcase_37 AC 62 ms
63,360 KB
testcase_38 AC 118 ms
76,160 KB
testcase_39 AC 121 ms
76,744 KB
testcase_40 AC 102 ms
76,160 KB
testcase_41 AC 119 ms
76,032 KB
testcase_42 AC 107 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(k):
    a = A
    h = list(map(lambda x: (x-k)*-1,H))
    heapify(h)
    while a:
        v = heappop(h)*-1
        if v <= 0:
            break
        heappush(h,(v-x)*-1)
        a -= 1
    s = 0
    while h:
        s += max(0, heappop(h)*-1)
    return s <= y*b

ng,ok = -1,1234567890
while ok-ng > 1:
    mid = (ok+ng)//2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0