結果

問題 No.2227 King Kraken's Attack
ユーザー tassei903tassei903
提出日時 2023-02-27 21:31:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-10-02 11:38:37
合計ジャッジ時間 3,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,352 KB
testcase_01 AC 32 ms
52,248 KB
testcase_02 AC 32 ms
53,416 KB
testcase_03 AC 43 ms
63,572 KB
testcase_04 AC 33 ms
52,960 KB
testcase_05 AC 33 ms
52,312 KB
testcase_06 AC 43 ms
62,088 KB
testcase_07 AC 37 ms
58,620 KB
testcase_08 AC 42 ms
59,560 KB
testcase_09 AC 38 ms
58,900 KB
testcase_10 AC 31 ms
53,688 KB
testcase_11 AC 38 ms
60,868 KB
testcase_12 AC 37 ms
59,228 KB
testcase_13 AC 38 ms
60,892 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 82 ms
61,492 KB
testcase_18 AC 33 ms
52,200 KB
testcase_19 AC 48 ms
64,572 KB
testcase_20 AC 55 ms
65,444 KB
testcase_21 AC 81 ms
65,444 KB
testcase_22 AC 38 ms
59,044 KB
testcase_23 AC 39 ms
59,348 KB
testcase_24 AC 87 ms
64,300 KB
testcase_25 AC 32 ms
52,684 KB
testcase_26 WA -
testcase_27 AC 35 ms
52,864 KB
testcase_28 AC 54 ms
63,748 KB
testcase_29 AC 51 ms
66,068 KB
testcase_30 AC 86 ms
63,316 KB
testcase_31 AC 56 ms
65,532 KB
testcase_32 AC 47 ms
65,152 KB
testcase_33 AC 48 ms
66,176 KB
testcase_34 AC 48 ms
65,436 KB
testcase_35 AC 49 ms
64,332 KB
testcase_36 AC 46 ms
64,772 KB
testcase_37 AC 31 ms
53,752 KB
testcase_38 AC 31 ms
52,064 KB
testcase_39 AC 32 ms
52,956 KB
testcase_40 AC 31 ms
53,036 KB
testcase_41 AC 32 ms
52,832 KB
testcase_42 AC 31 ms
53,536 KB
testcase_43 AC 33 ms
53,284 KB
testcase_44 AC 31 ms
53,072 KB
testcase_45 AC 33 ms
53,112 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 = 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