結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,568 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 102 ms
11,520 KB
testcase_03 AC 1,635 ms
13,312 KB
testcase_04 AC 1,563 ms
13,056 KB
testcase_05 TLE -
testcase_06 AC 1,469 ms
13,440 KB
testcase_07 AC 1,675 ms
13,312 KB
testcase_08 AC 1,568 ms
13,184 KB
testcase_09 AC 1,911 ms
13,696 KB
testcase_10 AC 1,618 ms
13,312 KB
testcase_11 AC 1,912 ms
13,568 KB
testcase_12 AC 1,921 ms
13,568 KB
testcase_13 AC 1,777 ms
13,568 KB
testcase_14 TLE -
testcase_15 AC 1,569 ms
13,312 KB
testcase_16 AC 1,917 ms
13,696 KB
testcase_17 AC 1,890 ms
13,824 KB
testcase_18 AC 1,650 ms
13,312 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,423 ms
13,440 KB
testcase_22 AC 1,481 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