結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー lloyzlloyz
提出日時 2022-11-22 00:06:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 65,772 KB
最終ジャッジ日時 2024-09-22 13:17:33
合計ジャッジ時間 2,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,472 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 AC 37 ms
53,180 KB
testcase_03 AC 37 ms
52,144 KB
testcase_04 AC 36 ms
53,036 KB
testcase_05 AC 37 ms
53,080 KB
testcase_06 AC 39 ms
57,900 KB
testcase_07 AC 36 ms
52,652 KB
testcase_08 AC 61 ms
65,772 KB
testcase_09 AC 55 ms
64,888 KB
testcase_10 AC 42 ms
58,532 KB
testcase_11 AC 43 ms
60,164 KB
testcase_12 AC 46 ms
61,268 KB
testcase_13 AC 47 ms
62,628 KB
testcase_14 AC 43 ms
60,416 KB
testcase_15 AC 47 ms
62,696 KB
testcase_16 AC 46 ms
61,360 KB
testcase_17 AC 46 ms
61,688 KB
testcase_18 AC 49 ms
62,408 KB
testcase_19 AC 48 ms
62,220 KB
testcase_20 AC 48 ms
63,592 KB
testcase_21 AC 45 ms
60,336 KB
testcase_22 AC 51 ms
63,368 KB
testcase_23 AC 51 ms
63,504 KB
testcase_24 AC 49 ms
61,824 KB
testcase_25 AC 51 ms
63,728 KB
testcase_26 AC 52 ms
64,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx, gy, n, f = map(int, input().split())
P = [list(map(int, input().split())) for _ in range(n)]

DP = [[(i + j) * f for i in range(gx + 1)] for j in range(gy + 1)]
for k in range(n):
    x, y, c = P[k]
    for i in range(gy, y - 1, -1):
        for j in range(gx, x - 1, -1):
            DP[i][j] = min(DP[i][j], DP[i - y][j - x] + c)
print(DP[-1][-1])
0