結果

問題 No.2317 Expression Menu
ユーザー NPNP
提出日時 2023-05-26 22:54:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 539 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-06-07 08:29:16
合計ジャッジ時間 25,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,696 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 112 ms
11,392 KB
testcase_03 AC 1,621 ms
13,440 KB
testcase_04 AC 1,506 ms
13,056 KB
testcase_05 AC 1,981 ms
13,952 KB
testcase_06 AC 1,560 ms
13,440 KB
testcase_07 AC 1,782 ms
13,440 KB
testcase_08 AC 1,675 ms
13,184 KB
testcase_09 AC 1,995 ms
13,696 KB
testcase_10 AC 1,788 ms
13,312 KB
testcase_11 TLE -
testcase_12 AC 1,902 ms
13,696 KB
testcase_13 AC 1,835 ms
13,440 KB
testcase_14 TLE -
testcase_15 AC 1,727 ms
13,440 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,705 ms
13,440 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,649 ms
13,568 KB
testcase_22 AC 1,769 ms
13,184 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

max_val = 0  

for _ in range(N):
    A, B, C = map(int, input().split())
    
    # XからAまでの範囲を逆順で探索する
    for i in range(X, A - 1, -1):
        # YからBまでの範囲を逆順で探索する
        for j in range(Y, B - 1, -1):
            if dp[i - A][j - B] != -1:
                dp[i][j] = max(dp[i][j], dp[i - A][j - B] + C)
                max_val = max(max_val, dp[i][j])

print(max_val)
0