結果

問題 No.2227 King Kraken's Attack
ユーザー tassei903tassei903
提出日時 2023-02-27 21:33:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-10-02 11:38:42
合計ジャッジ時間 4,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 38 ms
52,488 KB
testcase_02 AC 37 ms
53,316 KB
testcase_03 AC 51 ms
63,380 KB
testcase_04 AC 38 ms
53,504 KB
testcase_05 AC 38 ms
52,572 KB
testcase_06 AC 49 ms
62,484 KB
testcase_07 AC 42 ms
58,724 KB
testcase_08 AC 45 ms
60,120 KB
testcase_09 AC 41 ms
59,688 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 43 ms
60,684 KB
testcase_12 AC 42 ms
59,424 KB
testcase_13 AC 43 ms
59,776 KB
testcase_14 AC 216 ms
61,864 KB
testcase_15 AC 45 ms
58,520 KB
testcase_16 AC 133 ms
62,244 KB
testcase_17 AC 107 ms
59,940 KB
testcase_18 AC 38 ms
52,468 KB
testcase_19 AC 56 ms
64,284 KB
testcase_20 AC 58 ms
66,304 KB
testcase_21 AC 92 ms
65,332 KB
testcase_22 AC 43 ms
59,856 KB
testcase_23 AC 44 ms
60,008 KB
testcase_24 AC 96 ms
64,348 KB
testcase_25 AC 36 ms
53,360 KB
testcase_26 AC 262 ms
64,460 KB
testcase_27 AC 38 ms
52,268 KB
testcase_28 AC 58 ms
64,340 KB
testcase_29 AC 59 ms
65,316 KB
testcase_30 AC 95 ms
63,660 KB
testcase_31 AC 65 ms
65,616 KB
testcase_32 AC 53 ms
63,656 KB
testcase_33 AC 55 ms
65,516 KB
testcase_34 AC 51 ms
64,792 KB
testcase_35 AC 54 ms
64,916 KB
testcase_36 AC 53 ms
63,788 KB
testcase_37 AC 37 ms
52,600 KB
testcase_38 AC 36 ms
53,288 KB
testcase_39 AC 37 ms
52,704 KB
testcase_40 AC 36 ms
52,804 KB
testcase_41 AC 38 ms
53,004 KB
testcase_42 AC 37 ms
53,688 KB
testcase_43 AC 38 ms
52,696 KB
testcase_44 AC 37 ms
52,408 KB
testcase_45 AC 37 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
h,w,la,lb,ka,kb = na()

ok = 2*10**6
ng = 0
while ok - ng > 1:
    d = ok + ng >> 1
    a = 0
    for x in range(d + 1):
        y = d - x
        res = h * w - min(x * la, h) * min(y * lb, w)
        if res <= ka * x + kb * y:
            a = 1
            break
    if a:
        ok = d
    else:
        ng = d

print(ok)
0