結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー kohei2019kohei2019
提出日時 2023-06-12 00:12:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 125,680 KB
最終ジャッジ日時 2024-06-11 02:18:44
合計ジャッジ時間 42,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 WA -
testcase_04 AC 2,298 ms
125,104 KB
testcase_05 AC 2,864 ms
125,680 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 366 ms
103,596 KB
testcase_09 AC 512 ms
117,604 KB
testcase_10 AC 1,602 ms
95,364 KB
testcase_11 WA -
testcase_12 AC 119 ms
76,960 KB
testcase_13 WA -
testcase_14 AC 1,839 ms
112,280 KB
testcase_15 AC 1,491 ms
125,288 KB
testcase_16 AC 1,899 ms
90,268 KB
testcase_17 AC 926 ms
100,488 KB
testcase_18 AC 2,190 ms
100,488 KB
testcase_19 AC 468 ms
100,204 KB
testcase_20 WA -
testcase_21 AC 874 ms
116,656 KB
testcase_22 AC 1,495 ms
119,940 KB
testcase_23 AC 2,595 ms
124,660 KB
testcase_24 AC 2,813 ms
125,172 KB
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 WA -
testcase_29 AC 2,948 ms
124,132 KB
testcase_30 AC 2,794 ms
125,428 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 87 ms
76,672 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 93 ms
76,160 KB
testcase_39 AC 93 ms
76,800 KB
testcase_40 AC 83 ms
75,904 KB
testcase_41 AC 93 ms
76,160 KB
testcase_42 AC 85 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,A,B,X,Y = map(int,input().split())
lsH0 = list(map(int,input().split()))

def is_ok(arg):
    lsH = [-(lsH0[i]-arg) for i in range(N)]
    heapq.heapify(lsH)
    for i in range(A):
        hp = heapq.heappop(lsH)
        v = hp + X
        heapq.heappush(lsH, v)

    vsum = 0
    for j in lsH:
        if j >= 0:
            continue
        else:
            vsum -= j

    if vsum > B*Y:
        return False
    else:
        return True
 
 
def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(0,10**18+1))


0