結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ああいいああいい
提出日時 2021-12-04 10:48:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,591 ms / 3,000 ms
コード長 699 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,880 KB
最終ジャッジ日時 2024-07-06 15:46:01
合計ジャッジ時間 21,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 1,526 ms
21,748 KB
testcase_05 AC 1,115 ms
21,880 KB
testcase_06 AC 125 ms
21,708 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 485 ms
16,924 KB
testcase_09 AC 768 ms
20,036 KB
testcase_10 AC 636 ms
15,052 KB
testcase_11 AC 51 ms
14,300 KB
testcase_12 AC 82 ms
11,520 KB
testcase_13 AC 81 ms
17,636 KB
testcase_14 AC 804 ms
18,760 KB
testcase_15 AC 1,213 ms
21,664 KB
testcase_16 AC 586 ms
14,172 KB
testcase_17 AC 576 ms
16,212 KB
testcase_18 AC 480 ms
15,836 KB
testcase_19 AC 430 ms
16,028 KB
testcase_20 AC 41 ms
13,568 KB
testcase_21 AC 724 ms
19,624 KB
testcase_22 AC 1,160 ms
20,496 KB
testcase_23 AC 1,226 ms
21,664 KB
testcase_24 AC 1,559 ms
21,708 KB
testcase_25 AC 876 ms
21,536 KB
testcase_26 AC 116 ms
21,836 KB
testcase_27 AC 924 ms
21,496 KB
testcase_28 AC 119 ms
21,544 KB
testcase_29 AC 1,070 ms
21,812 KB
testcase_30 AC 1,591 ms
21,536 KB
testcase_31 AC 125 ms
21,692 KB
testcase_32 AC 106 ms
21,560 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 24 ms
10,752 KB
testcase_35 AC 24 ms
10,752 KB
testcase_36 AC 24 ms
10,624 KB
testcase_37 AC 24 ms
10,752 KB
testcase_38 AC 28 ms
10,752 KB
testcase_39 AC 32 ms
10,880 KB
testcase_40 AC 27 ms
10,752 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N,A,B,X,Y = list(map(int,input().split()))
H = list(map(int,input().split()))
h = sorted(H,reverse = True)

def check(K):
    l = [max(0,i-K) for i in h]
    count = 0
    i = 0
    while count < A and i < N:
        q = l[i] // X
        if q == 0:break
        q = min(A - count,q)
        count += q
        l[i] -= q * X
        i += 1
    if count < A:
        l.sort(reverse = True)
        for i in range(min(A-count,len(l))):
            l[i] = 0
    return sum(l) <= B * Y

if check(0):
    print(0)
    exit()
start = 0
end = 10 ** 9
while start != end:
    mid = end - (end - start + 1) // 2
    if check(mid):
        end = mid
    else:
        start = mid + 1
print(start)
0