結果

問題 No.2227 King Kraken's Attack
ユーザー ニックネームニックネーム
提出日時 2023-02-24 22:16:39
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 261 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-10-02 11:15:19
合計ジャッジ時間 8,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 54 ms
61,952 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 53 ms
60,928 KB
testcase_08 AC 50 ms
58,752 KB
testcase_09 AC 54 ms
62,336 KB
testcase_10 AC 48 ms
58,880 KB
testcase_11 AC 51 ms
60,800 KB
testcase_12 AC 53 ms
60,928 KB
testcase_13 AC 61 ms
64,512 KB
testcase_14 AC 280 ms
59,008 KB
testcase_15 AC 218 ms
60,160 KB
testcase_16 AC 296 ms
58,752 KB
testcase_17 AC 261 ms
60,288 KB
testcase_18 AC 172 ms
58,496 KB
testcase_19 AC 169 ms
61,184 KB
testcase_20 AC 210 ms
61,440 KB
testcase_21 AC 344 ms
67,712 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 39 ms
51,456 KB
testcase_24 AC 163 ms
62,080 KB
testcase_25 AC 218 ms
60,032 KB
testcase_26 AC 302 ms
59,008 KB
testcase_27 AC 195 ms
59,648 KB
testcase_28 AC 488 ms
68,480 KB
testcase_29 AC 381 ms
65,280 KB
testcase_30 AC 371 ms
69,120 KB
testcase_31 AC 337 ms
67,968 KB
testcase_32 AC 276 ms
68,608 KB
testcase_33 AC 211 ms
65,792 KB
testcase_34 AC 144 ms
65,152 KB
testcase_35 AC 308 ms
66,816 KB
testcase_36 AC 159 ms
65,024 KB
testcase_37 AC 78 ms
59,776 KB
testcase_38 AC 84 ms
59,520 KB
testcase_39 AC 96 ms
60,288 KB
testcase_40 AC 77 ms
59,520 KB
testcase_41 AC 181 ms
60,544 KB
testcase_42 AC 74 ms
59,392 KB
testcase_43 AC 86 ms
60,416 KB
testcase_44 AC 161 ms
60,032 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,la,lb,ka,kb = map(int,input().split())
ans = h+w
for i in range(h+1):
    ng = -1; ok = w+1
    while ok-ng>1:
        j = (ng+ok)//2
        if min(i*la,h)*min(j*lb,w)+i*ka+j*kb>=h*w: ok = j
        else: ng = j
    if ok<=w: ans = min(ans,i+ok)
print(ans)
0