結果

問題 No.2227 King Kraken's Attack
ユーザー Ricky_ponRicky_pon
提出日時 2023-06-13 22:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,547 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 75,896 KB
最終ジャッジ日時 2024-06-22 09:30:11
合計ジャッジ時間 22,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 35 ms
53,336 KB
testcase_03 AC 52 ms
67,904 KB
testcase_04 AC 33 ms
53,240 KB
testcase_05 AC 33 ms
53,172 KB
testcase_06 AC 50 ms
63,788 KB
testcase_07 AC 46 ms
63,276 KB
testcase_08 AC 50 ms
62,508 KB
testcase_09 AC 52 ms
66,264 KB
testcase_10 AC 40 ms
59,956 KB
testcase_11 AC 47 ms
63,068 KB
testcase_12 AC 48 ms
64,356 KB
testcase_13 AC 49 ms
64,608 KB
testcase_14 AC 980 ms
75,160 KB
testcase_15 AC 455 ms
75,180 KB
testcase_16 AC 735 ms
74,992 KB
testcase_17 AC 570 ms
75,568 KB
testcase_18 AC 67 ms
60,836 KB
testcase_19 AC 1,431 ms
74,900 KB
testcase_20 AC 1,421 ms
75,100 KB
testcase_21 AC 1,353 ms
75,896 KB
testcase_22 AC 666 ms
75,288 KB
testcase_23 AC 75 ms
75,008 KB
testcase_24 AC 645 ms
75,788 KB
testcase_25 AC 1,151 ms
74,960 KB
testcase_26 AC 915 ms
75,744 KB
testcase_27 AC 75 ms
61,568 KB
testcase_28 AC 1,505 ms
75,492 KB
testcase_29 AC 1,547 ms
74,984 KB
testcase_30 AC 1,518 ms
75,792 KB
testcase_31 AC 1,293 ms
75,392 KB
testcase_32 AC 825 ms
75,508 KB
testcase_33 AC 585 ms
75,180 KB
testcase_34 AC 427 ms
74,876 KB
testcase_35 AC 705 ms
75,192 KB
testcase_36 AC 759 ms
75,468 KB
testcase_37 AC 44 ms
59,424 KB
testcase_38 AC 40 ms
59,256 KB
testcase_39 AC 40 ms
59,668 KB
testcase_40 AC 42 ms
59,964 KB
testcase_41 AC 44 ms
59,948 KB
testcase_42 AC 40 ms
59,944 KB
testcase_43 AC 42 ms
60,468 KB
testcase_44 AC 46 ms
58,596 KB
testcase_45 AC 34 ms
53,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    h, w, la, lb, ka, kb = map(int, input().split())

    f = lambda x, y: min(h, x * la) * min(w, y * lb) + x * ka + y * kb

    ans = 10**9
    for x in range(h + w + 10):
        low, high = 0, h + w + 10
        if f(x, low) >= h * w:
            ans = min(ans, x)
        else:
            while high - low > 1:
                mid = (high + low) // 2
                if f(x, mid) >= h * w:
                    high = mid
                else:
                    low = mid
            ans = min(ans, x + high)

    print(ans)


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