結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-14 02:06:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,633 ms / 3,000 ms
コード長 689 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 126,068 KB
最終ジャッジ日時 2024-05-06 10:05:00
合計ジャッジ時間 51,122 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 49 ms
59,904 KB
testcase_04 AC 2,291 ms
124,892 KB
testcase_05 AC 2,543 ms
124,320 KB
testcase_06 AC 1,300 ms
119,936 KB
testcase_07 AC 49 ms
59,648 KB
testcase_08 AC 777 ms
100,512 KB
testcase_09 AC 1,156 ms
117,816 KB
testcase_10 AC 1,258 ms
91,008 KB
testcase_11 AC 910 ms
87,200 KB
testcase_12 AC 177 ms
77,068 KB
testcase_13 AC 1,420 ms
103,924 KB
testcase_14 AC 1,670 ms
112,848 KB
testcase_15 AC 1,785 ms
122,780 KB
testcase_16 AC 1,223 ms
85,888 KB
testcase_17 AC 990 ms
96,824 KB
testcase_18 AC 1,561 ms
97,420 KB
testcase_19 AC 786 ms
96,716 KB
testcase_20 AC 425 ms
83,872 KB
testcase_21 AC 1,358 ms
118,356 KB
testcase_22 AC 1,698 ms
119,160 KB
testcase_23 AC 2,398 ms
124,464 KB
testcase_24 AC 2,474 ms
126,068 KB
testcase_25 AC 2,626 ms
125,084 KB
testcase_26 AC 2,433 ms
123,916 KB
testcase_27 AC 2,633 ms
125,688 KB
testcase_28 AC 2,435 ms
123,932 KB
testcase_29 AC 2,563 ms
125,268 KB
testcase_30 AC 2,406 ms
124,776 KB
testcase_31 AC 2,327 ms
122,764 KB
testcase_32 AC 2,467 ms
124,444 KB
testcase_33 AC 84 ms
76,308 KB
testcase_34 AC 65 ms
75,392 KB
testcase_35 AC 90 ms
75,904 KB
testcase_36 AC 82 ms
75,904 KB
testcase_37 AC 75 ms
75,648 KB
testcase_38 AC 102 ms
76,556 KB
testcase_39 AC 98 ms
75,904 KB
testcase_40 AC 85 ms
76,076 KB
testcase_41 AC 102 ms
76,456 KB
testcase_42 AC 89 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

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

    def is_ok(k):
        q = []
        for h in H:
            q.append(-(h-k))
        heapq.heapify(q)
        for i in range(a):
            v = heapq.heappop(q)
            v = -v
            v -= x
            heapq.heappush(q, -v)
        s = 0
        while  q:
            v = heapq.heappop(q)
            v = -v
            s += max(v, 0)
        return  s <= y*b

    ng = -1
    ok = max(H)
    while ng+1<ok:
        c = (ng+ok)//2
        if is_ok(c):
            ok = c
        else:
            ng = c
    print(ok)

if __name__ == '__main__':
    main()
0