結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tentententen
提出日時 2020-12-10 11:45:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 41,988 KB
最終ジャッジ日時 2024-09-19 19:23:54
合計ジャッジ時間 5,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,080 KB
testcase_01 AC 95 ms
39,972 KB
testcase_02 AC 110 ms
41,436 KB
testcase_03 AC 111 ms
41,268 KB
testcase_04 AC 108 ms
40,956 KB
testcase_05 AC 111 ms
41,088 KB
testcase_06 AC 104 ms
40,236 KB
testcase_07 AC 108 ms
41,168 KB
testcase_08 AC 137 ms
41,372 KB
testcase_09 AC 146 ms
41,628 KB
testcase_10 AC 120 ms
41,456 KB
testcase_11 AC 117 ms
41,320 KB
testcase_12 AC 122 ms
41,852 KB
testcase_13 AC 125 ms
41,940 KB
testcase_14 AC 120 ms
41,688 KB
testcase_15 AC 116 ms
41,548 KB
testcase_16 AC 125 ms
41,728 KB
testcase_17 AC 117 ms
41,116 KB
testcase_18 AC 119 ms
41,336 KB
testcase_19 AC 124 ms
41,464 KB
testcase_20 AC 104 ms
39,860 KB
testcase_21 AC 108 ms
39,940 KB
testcase_22 AC 140 ms
41,988 KB
testcase_23 AC 131 ms
41,592 KB
testcase_24 AC 133 ms
41,708 KB
testcase_25 AC 137 ms
41,264 KB
testcase_26 AC 145 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int gx = sc.nextInt();
        int gy = sc.nextInt();
        int n = sc.nextInt();
        int f = sc.nextInt();
        int[][] costs = new int[gx + 1][gy + 1];
        for (int i = 0; i <= gx; i++) {
            for (int j = 0; j <= gy; j++) {
                costs[i][j] = (i + j) * f;
            }
        }
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int y = sc.nextInt();
            int c = sc.nextInt();
            for (int j = gx; j - x >= 0; j--) {
                for (int k = gy; k - y >= 0; k--) {
                    costs[j][k] = Math.min(costs[j][k], costs[j - x][k - y] + c);
                }
            }
        }
        System.out.println(costs[gx][gy]);
    }
}
0