結果

問題 No.2317 Expression Menu
ユーザー NPNP
提出日時 2023-05-26 23:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-07 09:24:22
合計ジャッジ時間 9,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 59 ms
62,080 KB
testcase_03 AC 143 ms
79,232 KB
testcase_04 AC 138 ms
78,848 KB
testcase_05 AC 155 ms
79,780 KB
testcase_06 AC 144 ms
79,012 KB
testcase_07 AC 147 ms
79,140 KB
testcase_08 AC 147 ms
79,324 KB
testcase_09 AC 154 ms
79,396 KB
testcase_10 AC 149 ms
79,000 KB
testcase_11 AC 158 ms
78,888 KB
testcase_12 AC 161 ms
79,336 KB
testcase_13 AC 152 ms
79,124 KB
testcase_14 AC 171 ms
79,232 KB
testcase_15 AC 160 ms
79,260 KB
testcase_16 AC 156 ms
79,872 KB
testcase_17 AC 160 ms
79,004 KB
testcase_18 AC 189 ms
78,916 KB
testcase_19 AC 161 ms
79,332 KB
testcase_20 AC 163 ms
79,272 KB
testcase_21 AC 142 ms
79,000 KB
testcase_22 AC 144 ms
79,276 KB
testcase_23 AC 366 ms
78,104 KB
testcase_24 AC 357 ms
78,056 KB
testcase_25 AC 342 ms
78,052 KB
testcase_26 AC 341 ms
78,608 KB
testcase_27 AC 339 ms
78,268 KB
testcase_28 AC 352 ms
78,436 KB
testcase_29 AC 361 ms
78,300 KB
testcase_30 AC 360 ms
78,428 KB
testcase_31 AC 345 ms
78,336 KB
testcase_32 AC 341 ms
78,156 KB
testcase_33 AC 44 ms
52,352 KB
testcase_34 AC 46 ms
52,352 KB
testcase_35 AC 51 ms
59,520 KB
testcase_36 AC 44 ms
52,480 KB
testcase_37 AC 44 ms
52,352 KB
testcase_38 AC 206 ms
72,576 KB
testcase_39 AC 211 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N, X, Y = map(int, input().split())
dp = [[-1] * (Y + 1) for _ in range(X + 1)]
dp[0][0] = 0
for _ in range(N):
    A, B, C = map(int, input().split())
    for i in range(X - A, -1, -1):
        for j in range(Y - B, -1, -1):
            if dp[i][j] != -1:
                dp[i + A][j + B] = max(dp[i + A][j + B], dp[i][j] + C)

max_heap = []
for i in range(X + 1):
    for j in range(Y + 1):
        if dp[i][j] != -1:
            heapq.heappush(max_heap, -dp[i][j])

ans = -heapq.heappop(max_heap)
print(ans)
0