結果

問題 No.2317 Expression Menu
ユーザー NPNP
提出日時 2023-05-26 22:34:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 524 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,488 KB
最終ジャッジ日時 2024-06-07 07:54:53
合計ジャッジ時間 31,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 93 ms
11,392 KB
testcase_03 AC 1,147 ms
15,104 KB
testcase_04 AC 996 ms
14,848 KB
testcase_05 AC 1,346 ms
16,128 KB
testcase_06 AC 1,058 ms
15,232 KB
testcase_07 AC 1,219 ms
15,232 KB
testcase_08 AC 1,114 ms
15,104 KB
testcase_09 AC 1,567 ms
15,616 KB
testcase_10 AC 1,256 ms
15,232 KB
testcase_11 AC 1,474 ms
15,616 KB
testcase_12 AC 1,309 ms
15,616 KB
testcase_13 AC 1,265 ms
15,488 KB
testcase_14 AC 1,778 ms
16,384 KB
testcase_15 AC 1,149 ms
15,104 KB
testcase_16 AC 1,465 ms
16,000 KB
testcase_17 AC 1,495 ms
16,000 KB
testcase_18 AC 1,244 ms
15,232 KB
testcase_19 AC 1,535 ms
15,872 KB
testcase_20 AC 1,723 ms
16,384 KB
testcase_21 AC 1,122 ms
15,360 KB
testcase_22 AC 1,069 ms
14,976 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

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