結果

問題 No.2227 King Kraken's Attack
ユーザー rlangevinrlangevin
提出日時 2023-02-24 22:17:00
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 541 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-10-02 11:15:45
合計ジャッジ時間 7,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 69 ms
67,200 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 57 ms
61,824 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 60 ms
64,384 KB
testcase_10 AC 46 ms
58,496 KB
testcase_11 AC 56 ms
62,848 KB
testcase_12 AC 60 ms
64,640 KB
testcase_13 AC 69 ms
68,352 KB
testcase_14 AC 49 ms
58,240 KB
testcase_15 AC 330 ms
59,648 KB
testcase_16 AC 49 ms
58,496 KB
testcase_17 AC 288 ms
63,360 KB
testcase_18 AC 54 ms
60,032 KB
testcase_19 AC 181 ms
62,720 KB
testcase_20 AC 196 ms
62,720 KB
testcase_21 AC 329 ms
73,216 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 168 ms
65,792 KB
testcase_25 AC 138 ms
60,032 KB
testcase_26 AC 47 ms
58,240 KB
testcase_27 AC 63 ms
62,976 KB
testcase_28 AC 424 ms
71,936 KB
testcase_29 AC 374 ms
71,936 KB
testcase_30 AC 447 ms
73,600 KB
testcase_31 AC 395 ms
70,912 KB
testcase_32 AC 383 ms
75,264 KB
testcase_33 AC 271 ms
71,424 KB
testcase_34 AC 178 ms
70,272 KB
testcase_35 AC 379 ms
73,344 KB
testcase_36 AC 194 ms
68,608 KB
testcase_37 AC 50 ms
60,416 KB
testcase_38 AC 53 ms
60,160 KB
testcase_39 AC 51 ms
60,032 KB
testcase_40 AC 52 ms
60,288 KB
testcase_41 AC 53 ms
60,288 KB
testcase_42 AC 49 ms
59,904 KB
testcase_43 AC 49 ms
60,416 KB
testcase_44 AC 51 ms
59,904 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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(H + 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