結果

問題 No.2227 King Kraken's Attack
ユーザー norikamenorikame
提出日時 2023-01-19 02:49:28
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 946 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-10-02 11:02:57
合計ジャッジ時間 10,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,628 KB
testcase_01 AC 125 ms
41,216 KB
testcase_02 AC 123 ms
41,424 KB
testcase_03 AC 124 ms
41,300 KB
testcase_04 AC 125 ms
41,524 KB
testcase_05 AC 126 ms
41,208 KB
testcase_06 AC 125 ms
41,392 KB
testcase_07 AC 122 ms
41,496 KB
testcase_08 AC 110 ms
40,264 KB
testcase_09 AC 127 ms
41,412 KB
testcase_10 AC 128 ms
41,464 KB
testcase_11 AC 123 ms
41,076 KB
testcase_12 AC 125 ms
41,196 KB
testcase_13 AC 127 ms
41,516 KB
testcase_14 AC 188 ms
41,560 KB
testcase_15 AC 111 ms
40,176 KB
testcase_16 AC 143 ms
41,396 KB
testcase_17 AC 268 ms
41,372 KB
testcase_18 AC 187 ms
41,396 KB
testcase_19 AC 129 ms
41,292 KB
testcase_20 AC 131 ms
41,244 KB
testcase_21 AC 142 ms
41,188 KB
testcase_22 AC 123 ms
41,216 KB
testcase_23 AC 127 ms
41,196 KB
testcase_24 AC 154 ms
41,184 KB
testcase_25 AC 196 ms
41,488 KB
testcase_26 AC 197 ms
41,692 KB
testcase_27 AC 159 ms
41,432 KB
testcase_28 AC 136 ms
41,304 KB
testcase_29 AC 133 ms
41,544 KB
testcase_30 AC 128 ms
40,656 KB
testcase_31 AC 117 ms
40,444 KB
testcase_32 AC 116 ms
40,340 KB
testcase_33 AC 137 ms
41,540 KB
testcase_34 AC 126 ms
40,896 KB
testcase_35 AC 136 ms
41,352 KB
testcase_36 AC 132 ms
41,504 KB
testcase_37 AC 126 ms
41,060 KB
testcase_38 AC 125 ms
41,168 KB
testcase_39 AC 123 ms
41,460 KB
testcase_40 AC 118 ms
40,852 KB
testcase_41 AC 119 ms
41,368 KB
testcase_42 AC 123 ms
41,376 KB
testcase_43 AC 123 ms
41,432 KB
testcase_44 AC 124 ms
41,672 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

import java.util.*;

public class Main_sol2 {
    private static final int INF = (int)(1e9);
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt(), w = sc.nextInt(), la = sc.nextInt(), lb = sc.nextInt();
        long ka = sc.nextLong(), kb = sc.nextLong();
        sc.close();
        int amx = (h+la-1) / la, bmx = (w+lb-1) / lb, res = INF;
        for (int acnt=0; acnt<=amx; ++acnt) {
            long alen = Math.min(h, acnt*la), adda = acnt * ka;
            int lval = -1, rval = bmx + 1;
            while (rval-lval > 1) {
                int cval = rval - (rval-lval) / 2;
                long blen = Math.min(w, cval*lb), addb = cval * kb;
                if (alen*blen+adda+addb < (long)h*w) lval = cval;
                else rval = cval;
            }
            if (rval <= bmx) res = Math.min(res, acnt+rval);
        }
        System.out.println(res);
    }
}
0