結果

問題 No.2227 King Kraken's Attack
ユーザー rlangevinrlangevin
提出日時 2023-10-11 13:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-09-13 12:19:21
合計ジャッジ時間 8,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 64 ms
66,688 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 53 ms
61,824 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 57 ms
64,640 KB
testcase_10 AC 45 ms
58,752 KB
testcase_11 AC 55 ms
63,104 KB
testcase_12 AC 57 ms
64,896 KB
testcase_13 AC 64 ms
68,224 KB
testcase_14 AC 48 ms
58,496 KB
testcase_15 AC 337 ms
59,776 KB
testcase_16 AC 48 ms
58,240 KB
testcase_17 AC 294 ms
63,360 KB
testcase_18 AC 53 ms
59,776 KB
testcase_19 AC 187 ms
62,464 KB
testcase_20 AC 198 ms
62,592 KB
testcase_21 AC 329 ms
72,812 KB
testcase_22 AC 447 ms
62,464 KB
testcase_23 AC 76 ms
66,432 KB
testcase_24 AC 175 ms
65,664 KB
testcase_25 AC 141 ms
60,032 KB
testcase_26 AC 48 ms
58,624 KB
testcase_27 AC 60 ms
63,488 KB
testcase_28 AC 428 ms
72,064 KB
testcase_29 AC 380 ms
71,936 KB
testcase_30 AC 459 ms
73,216 KB
testcase_31 AC 411 ms
71,040 KB
testcase_32 AC 389 ms
75,264 KB
testcase_33 AC 271 ms
71,424 KB
testcase_34 AC 181 ms
70,528 KB
testcase_35 AC 388 ms
73,856 KB
testcase_36 AC 270 ms
68,736 KB
testcase_37 AC 50 ms
60,032 KB
testcase_38 AC 53 ms
59,776 KB
testcase_39 AC 50 ms
60,544 KB
testcase_40 AC 48 ms
59,904 KB
testcase_41 AC 52 ms
60,032 KB
testcase_42 AC 47 ms
59,904 KB
testcase_43 AC 51 ms
60,288 KB
testcase_44 AC 50 ms
59,904 KB
testcase_45 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(h, w):
    yoko = min(H, h * LA)
    tate = min(W, w * LB)
    nokori = H * W - yoko * tate
    return h * KA + w * KB - nokori >= 0 

H, W, LA, LB, KA, KB = map(int, input().split())
ans = 10 ** 18
for h in range(max(H, W) + 1):
    yes = 10 ** 6
    if not check(h, yes):
        continue
    if check(h, 0):
        ans = min(ans, h)
        continue
    no = 0
    while yes - no != 1:
        mid = (yes + no)//2
        if check(h, mid):
            yes = mid
        else:
            no = mid
    ans = min(ans, h + yes)
print(ans)
0