結果

問題 No.2227 King Kraken's Attack
ユーザー lloyzlloyz
提出日時 2023-06-17 22:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 75,352 KB
最終ジャッジ日時 2024-06-25 12:10:54
合計ジャッジ時間 12,697 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,368 KB
testcase_01 AC 44 ms
52,620 KB
testcase_02 AC 45 ms
52,256 KB
testcase_03 AC 68 ms
66,140 KB
testcase_04 AC 45 ms
52,900 KB
testcase_05 AC 47 ms
53,844 KB
testcase_06 AC 64 ms
66,192 KB
testcase_07 AC 58 ms
61,608 KB
testcase_08 AC 60 ms
62,412 KB
testcase_09 AC 64 ms
64,396 KB
testcase_10 AC 52 ms
60,068 KB
testcase_11 AC 57 ms
61,416 KB
testcase_12 AC 62 ms
64,200 KB
testcase_13 AC 63 ms
65,656 KB
testcase_14 AC 322 ms
64,752 KB
testcase_15 AC 323 ms
62,008 KB
testcase_16 AC 236 ms
63,948 KB
testcase_17 AC 303 ms
64,464 KB
testcase_18 AC 63 ms
60,960 KB
testcase_19 AC 426 ms
65,312 KB
testcase_20 AC 365 ms
65,564 KB
testcase_21 AC 747 ms
70,372 KB
testcase_22 AC 440 ms
63,880 KB
testcase_23 AC 73 ms
64,600 KB
testcase_24 AC 228 ms
66,272 KB
testcase_25 AC 663 ms
62,980 KB
testcase_26 AC 296 ms
64,520 KB
testcase_27 AC 63 ms
61,772 KB
testcase_28 AC 803 ms
70,376 KB
testcase_29 AC 806 ms
69,116 KB
testcase_30 AC 754 ms
75,352 KB
testcase_31 AC 709 ms
71,564 KB
testcase_32 AC 379 ms
71,320 KB
testcase_33 AC 302 ms
74,008 KB
testcase_34 AC 253 ms
70,748 KB
testcase_35 AC 436 ms
72,244 KB
testcase_36 AC 372 ms
69,580 KB
testcase_37 AC 54 ms
58,284 KB
testcase_38 AC 51 ms
59,752 KB
testcase_39 AC 52 ms
60,228 KB
testcase_40 AC 51 ms
59,396 KB
testcase_41 AC 55 ms
59,592 KB
testcase_42 AC 50 ms
59,608 KB
testcase_43 AC 55 ms
59,168 KB
testcase_44 AC 57 ms
59,244 KB
testcase_45 AC 44 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

ans = 1 << 60
for x in range(h + w + 10):
    l, r = 0, h + w + 10
    if f(x, l) >= h * w:
        ans = min(ans, x)
    else:
        while r - l > 1:
            mid = (l + r) // 2
            if f(x, mid) >= h * w:
                r = mid
            else:
                l = mid
        ans = min(ans, x + r)
print(ans)
0