結果

問題 No.2317 Expression Menu
ユーザー minimumminimum
提出日時 2023-05-26 22:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 707 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,792 KB
最終ジャッジ日時 2024-06-07 06:52:05
合計ジャッジ時間 18,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 91 ms
71,680 KB
testcase_03 AC 437 ms
79,252 KB
testcase_04 AC 421 ms
77,884 KB
testcase_05 AC 473 ms
79,316 KB
testcase_06 AC 433 ms
79,448 KB
testcase_07 AC 427 ms
77,768 KB
testcase_08 AC 421 ms
79,188 KB
testcase_09 AC 463 ms
79,536 KB
testcase_10 AC 440 ms
79,000 KB
testcase_11 AC 462 ms
79,408 KB
testcase_12 AC 486 ms
79,792 KB
testcase_13 AC 442 ms
78,948 KB
testcase_14 AC 501 ms
79,268 KB
testcase_15 AC 426 ms
79,272 KB
testcase_16 AC 449 ms
79,664 KB
testcase_17 AC 486 ms
79,580 KB
testcase_18 AC 429 ms
79,528 KB
testcase_19 AC 473 ms
79,316 KB
testcase_20 AC 486 ms
79,528 KB
testcase_21 AC 412 ms
79,308 KB
testcase_22 AC 416 ms
79,188 KB
testcase_23 AC 670 ms
77,228 KB
testcase_24 AC 670 ms
77,164 KB
testcase_25 AC 696 ms
77,612 KB
testcase_26 AC 619 ms
77,256 KB
testcase_27 AC 618 ms
77,640 KB
testcase_28 AC 689 ms
77,492 KB
testcase_29 AC 707 ms
77,240 KB
testcase_30 AC 604 ms
77,376 KB
testcase_31 AC 583 ms
77,288 KB
testcase_32 AC 689 ms
77,164 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 AC 39 ms
51,968 KB
testcase_35 AC 50 ms
61,440 KB
testcase_36 AC 40 ms
51,584 KB
testcase_37 AC 42 ms
52,480 KB
testcase_38 AC 485 ms
76,800 KB
testcase_39 AC 514 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float('inf')
N, X, Y = map(int, input().split())
dp = [[-INF] * (Y + 1) for _ in range(X + 1)]
dp[0][0] = 0

for i in range(N):
    a, b, c = map(int, input().split())
    for x in range(X, -1, -1):
        for y in range(Y, -1, -1):
            if x + a <= X and y + b <= Y:
                if dp[x + a][y + b] < dp[x][y] + c:
                    dp[x + a][y + b] = dp[x][y] + c

ans = -INF
for x in range(X + 1):
    for y in range(Y + 1):
        ans = max(ans, dp[x][y])

print(ans)
0