結果

問題 No.2317 Expression Menu
ユーザー ntudantuda
提出日時 2023-05-27 11:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-06-07 15:20:05
合計ジャッジ時間 14,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 75 ms
76,160 KB
testcase_03 AC 249 ms
76,256 KB
testcase_04 AC 234 ms
76,228 KB
testcase_05 AC 234 ms
76,160 KB
testcase_06 AC 255 ms
76,416 KB
testcase_07 AC 215 ms
76,108 KB
testcase_08 AC 262 ms
76,300 KB
testcase_09 AC 237 ms
76,416 KB
testcase_10 AC 256 ms
76,416 KB
testcase_11 AC 267 ms
76,712 KB
testcase_12 AC 239 ms
76,468 KB
testcase_13 AC 236 ms
76,288 KB
testcase_14 AC 230 ms
76,416 KB
testcase_15 AC 222 ms
76,600 KB
testcase_16 AC 280 ms
76,344 KB
testcase_17 AC 275 ms
76,416 KB
testcase_18 AC 212 ms
76,408 KB
testcase_19 AC 279 ms
76,288 KB
testcase_20 AC 308 ms
76,416 KB
testcase_21 AC 244 ms
76,788 KB
testcase_22 AC 219 ms
76,368 KB
testcase_23 AC 614 ms
76,416 KB
testcase_24 AC 612 ms
76,592 KB
testcase_25 AC 620 ms
76,416 KB
testcase_26 AC 622 ms
76,416 KB
testcase_27 AC 617 ms
76,416 KB
testcase_28 AC 615 ms
76,416 KB
testcase_29 AC 612 ms
76,432 KB
testcase_30 AC 620 ms
76,292 KB
testcase_31 AC 619 ms
76,872 KB
testcase_32 AC 618 ms
76,648 KB
testcase_33 AC 38 ms
52,352 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 39 ms
52,864 KB
testcase_36 AC 41 ms
51,840 KB
testcase_37 AC 41 ms
52,608 KB
testcase_38 AC 532 ms
76,296 KB
testcase_39 AC 468 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
ABC = [list(map(int, input().split())) for _ in range(N)]
# dp[i][j]:= メニュー枠をi, 容量をj使用して上がるかわいさ

dp = [[0] * (Y + 1) for _ in range(X + 1)]

for a, b, c in ABC:
    for i in reversed(range(X)):
        if i + a <= X:
            for j in reversed(range(Y)):
                if j + b <= Y:
                    dp[i + a][j + b] = max(dp[i + a][j + b], dp[i][j] + c)
print(dp[X][Y])
0