結果

問題 No.2227 King Kraken's Attack
ユーザー ああいいああいい
提出日時 2023-02-26 10:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-10-02 11:36:49
合計ジャッジ時間 8,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 55 ms
64,128 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 50 ms
63,104 KB
testcase_09 AC 48 ms
61,696 KB
testcase_10 AC 44 ms
59,904 KB
testcase_11 AC 47 ms
60,672 KB
testcase_12 AC 51 ms
62,720 KB
testcase_13 AC 51 ms
63,488 KB
testcase_14 AC 46 ms
58,752 KB
testcase_15 AC 45 ms
58,880 KB
testcase_16 AC 242 ms
63,616 KB
testcase_17 AC 278 ms
62,848 KB
testcase_18 AC 183 ms
59,392 KB
testcase_19 AC 213 ms
62,848 KB
testcase_20 AC 240 ms
63,872 KB
testcase_21 AC 383 ms
70,912 KB
testcase_22 AC 316 ms
69,376 KB
testcase_23 AC 85 ms
69,248 KB
testcase_24 AC 65 ms
64,000 KB
testcase_25 AC 325 ms
60,032 KB
testcase_26 AC 46 ms
58,604 KB
testcase_27 AC 266 ms
65,664 KB
testcase_28 AC 471 ms
70,016 KB
testcase_29 AC 414 ms
70,912 KB
testcase_30 AC 266 ms
75,648 KB
testcase_31 AC 393 ms
68,736 KB
testcase_32 AC 90 ms
68,904 KB
testcase_33 AC 147 ms
71,040 KB
testcase_34 AC 168 ms
72,124 KB
testcase_35 AC 126 ms
71,808 KB
testcase_36 AC 298 ms
69,120 KB
testcase_37 AC 127 ms
61,952 KB
testcase_38 AC 85 ms
62,464 KB
testcase_39 AC 55 ms
61,568 KB
testcase_40 AC 84 ms
62,720 KB
testcase_41 AC 167 ms
61,184 KB
testcase_42 AC 90 ms
62,976 KB
testcase_43 AC 138 ms
61,440 KB
testcase_44 AC 287 ms
60,672 KB
testcase_45 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,LA,LB,KA,KB = map(int,input().split())

ans = 10 ** 8


def calc(w,h):
    a = w * KB + h * KA
    gyo = min(w * LB,W)
    retu = min(h * LA,H)
    return a + gyo * retu >= H * W
for w in range(W + 1):
    if not calc(w,H + W - w):
        continue
    end = H + W - w
    start = -1
    while end -start > 1:
        mid = end +start >> 1
        if calc(w,mid):
            end = mid
        else:
            start = mid
    if w + end < ans:
        ans = w + end
print(ans)
0