結果

問題 No.2317 Expression Menu
ユーザー cozy_saunacozy_sauna
提出日時 2023-05-31 00:04:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-08 20:50:36
合計ジャッジ時間 14,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 74 ms
67,968 KB
testcase_03 AC 279 ms
76,928 KB
testcase_04 AC 264 ms
73,984 KB
testcase_05 AC 287 ms
74,368 KB
testcase_06 AC 292 ms
76,800 KB
testcase_07 AC 242 ms
74,368 KB
testcase_08 AC 284 ms
76,928 KB
testcase_09 AC 271 ms
76,800 KB
testcase_10 AC 287 ms
77,056 KB
testcase_11 AC 303 ms
77,184 KB
testcase_12 AC 256 ms
77,056 KB
testcase_13 AC 280 ms
73,728 KB
testcase_14 AC 280 ms
76,928 KB
testcase_15 AC 264 ms
76,928 KB
testcase_16 AC 291 ms
73,728 KB
testcase_17 AC 277 ms
74,112 KB
testcase_18 AC 269 ms
74,880 KB
testcase_19 AC 290 ms
76,800 KB
testcase_20 AC 315 ms
76,544 KB
testcase_21 AC 276 ms
76,928 KB
testcase_22 AC 258 ms
76,928 KB
testcase_23 AC 573 ms
76,928 KB
testcase_24 AC 567 ms
76,800 KB
testcase_25 AC 576 ms
76,800 KB
testcase_26 AC 563 ms
76,672 KB
testcase_27 AC 559 ms
76,928 KB
testcase_28 AC 579 ms
77,056 KB
testcase_29 AC 568 ms
77,056 KB
testcase_30 AC 564 ms
76,928 KB
testcase_31 AC 557 ms
77,184 KB
testcase_32 AC 562 ms
76,672 KB
testcase_33 AC 36 ms
51,456 KB
testcase_34 AC 33 ms
51,712 KB
testcase_35 AC 44 ms
61,312 KB
testcase_36 AC 37 ms
51,584 KB
testcase_37 AC 37 ms
52,480 KB
testcase_38 AC 425 ms
74,112 KB
testcase_39 AC 497 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 30
N, X, Y = map(int, input().split())

dp = [[-INF] * (Y + 1) for _ in range(X + 1)]
dp[0][0] = 0
for _ in range(N):
    a, b, c = map(int, input().split())
    for x in range(X + 1)[::-1]:
        for y in range(Y + 1)[::-1]:
            xx = x + a
            yy = y + b
            if xx <= X and yy <= Y:
                dp[xx][yy] = max(dp[xx][yy], dp[x][y] + c)

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

print(ans)



0