結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 45 ms
52,864 KB
testcase_02 AC 49 ms
58,368 KB
testcase_03 AC 46 ms
52,608 KB
testcase_04 AC 2,889 ms
125,188 KB
testcase_05 TLE -
testcase_06 AC 1,687 ms
119,156 KB
testcase_07 AC 44 ms
52,224 KB
testcase_08 AC 960 ms
100,348 KB
testcase_09 AC 1,465 ms
117,668 KB
testcase_10 AC 1,592 ms
91,648 KB
testcase_11 AC 914 ms
87,040 KB
testcase_12 AC 213 ms
76,688 KB
testcase_13 AC 1,828 ms
103,264 KB
testcase_14 AC 2,278 ms
112,636 KB
testcase_15 AC 2,328 ms
124,684 KB
testcase_16 AC 1,490 ms
86,272 KB
testcase_17 AC 1,219 ms
97,256 KB
testcase_18 AC 2,050 ms
96,828 KB
testcase_19 AC 940 ms
96,704 KB
testcase_20 AC 484 ms
84,096 KB
testcase_21 AC 1,675 ms
117,628 KB
testcase_22 AC 2,193 ms
119,128 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2,976 ms
124,052 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2,997 ms
123,412 KB
testcase_32 TLE -
testcase_33 AC 101 ms
76,032 KB
testcase_34 AC 45 ms
52,736 KB
testcase_35 AC 105 ms
76,416 KB
testcase_36 AC 93 ms
76,032 KB
testcase_37 AC 63 ms
63,104 KB
testcase_38 AC 118 ms
76,200 KB
testcase_39 AC 117 ms
76,472 KB
testcase_40 AC 107 ms
75,904 KB
testcase_41 AC 119 ms
76,464 KB
testcase_42 AC 111 ms
76,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    ng,ok = -1,1000000000
    while ok-ng > 1:
        mid = (ok+ng)>>1
        a = A
        h = list(map(lambda x: (x-mid)*-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)
        if s <= y*b:
            ok = mid
        else:
            ng = mid
    print(ok)
main()
0