結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,048 KB
testcase_01 AC 119 ms
41,300 KB
testcase_02 AC 126 ms
41,260 KB
testcase_03 AC 123 ms
41,064 KB
testcase_04 AC 120 ms
41,064 KB
testcase_05 AC 115 ms
39,960 KB
testcase_06 AC 122 ms
41,324 KB
testcase_07 AC 123 ms
41,188 KB
testcase_08 AC 127 ms
41,456 KB
testcase_09 AC 114 ms
40,204 KB
testcase_10 AC 125 ms
41,012 KB
testcase_11 AC 125 ms
41,092 KB
testcase_12 AC 110 ms
40,192 KB
testcase_13 AC 122 ms
41,204 KB
testcase_14 AC 130 ms
41,184 KB
testcase_15 AC 128 ms
41,312 KB
testcase_16 AC 136 ms
41,248 KB
testcase_17 AC 144 ms
41,300 KB
testcase_18 AC 144 ms
41,308 KB
testcase_19 AC 121 ms
41,180 KB
testcase_20 AC 119 ms
41,264 KB
testcase_21 AC 130 ms
41,292 KB
testcase_22 AC 130 ms
41,108 KB
testcase_23 AC 134 ms
41,072 KB
testcase_24 AC 137 ms
40,852 KB
testcase_25 AC 144 ms
41,368 KB
testcase_26 AC 133 ms
41,268 KB
testcase_27 AC 121 ms
40,480 KB
testcase_28 AC 127 ms
41,016 KB
testcase_29 AC 111 ms
40,064 KB
testcase_30 AC 126 ms
41,160 KB
testcase_31 AC 127 ms
41,048 KB
testcase_32 AC 112 ms
39,968 KB
testcase_33 AC 125 ms
41,004 KB
testcase_34 AC 123 ms
41,344 KB
testcase_35 AC 123 ms
41,104 KB
testcase_36 AC 122 ms
41,316 KB
testcase_37 AC 123 ms
41,116 KB
testcase_38 AC 119 ms
41,128 KB
testcase_39 AC 122 ms
41,076 KB
testcase_40 AC 120 ms
41,168 KB
testcase_41 AC 123 ms
41,348 KB
testcase_42 AC 122 ms
41,164 KB
testcase_43 AC 123 ms
41,232 KB
testcase_44 AC 121 ms
41,380 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

import java.util.*;

public class Main_sol1 {
    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, bcnt = bmx + 1, res = INF;
        for (int acnt=0; acnt<=amx; ++acnt) {
            int alen = Math.min(h, acnt*la);
            long adda = acnt * ka;
            while (bcnt > 0) {
                int blen = Math.min(w, (bcnt-1)*lb);
                long addb = (bcnt-1) * kb;
                if ((long)alen*blen+adda+addb < (long)h*w) break;
                --bcnt;
            }
            if (bcnt <= bmx) res = Math.min(res, acnt+bcnt);
        }
        System.out.println(res);
    }
}
0