結果

問題 No.2317 Expression Menu
ユーザー flygonflygon
提出日時 2023-05-26 21:29:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 534 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 297,984 KB
最終ジャッジ日時 2024-06-07 05:37:27
合計ジャッジ時間 33,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 127 ms
91,392 KB
testcase_03 AC 840 ms
297,216 KB
testcase_04 AC 860 ms
297,344 KB
testcase_05 AC 852 ms
297,600 KB
testcase_06 AC 861 ms
297,472 KB
testcase_07 AC 831 ms
297,472 KB
testcase_08 AC 840 ms
297,600 KB
testcase_09 AC 788 ms
297,600 KB
testcase_10 AC 858 ms
297,472 KB
testcase_11 AC 870 ms
297,600 KB
testcase_12 AC 787 ms
297,856 KB
testcase_13 AC 826 ms
297,472 KB
testcase_14 AC 875 ms
297,984 KB
testcase_15 AC 775 ms
297,600 KB
testcase_16 AC 831 ms
297,728 KB
testcase_17 AC 825 ms
297,600 KB
testcase_18 AC 867 ms
297,856 KB
testcase_19 AC 861 ms
297,344 KB
testcase_20 AC 896 ms
297,600 KB
testcase_21 AC 834 ms
297,600 KB
testcase_22 AC 845 ms
297,728 KB
testcase_23 AC 1,329 ms
297,472 KB
testcase_24 AC 1,097 ms
297,856 KB
testcase_25 AC 1,085 ms
297,600 KB
testcase_26 AC 1,328 ms
297,344 KB
testcase_27 AC 1,348 ms
297,600 KB
testcase_28 AC 1,108 ms
297,344 KB
testcase_29 AC 1,373 ms
297,472 KB
testcase_30 AC 1,362 ms
297,600 KB
testcase_31 AC 1,353 ms
297,728 KB
testcase_32 AC 1,090 ms
297,472 KB
testcase_33 AC 38 ms
51,712 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 51 ms
62,464 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 1,168 ms
297,984 KB
testcase_39 AC 1,343 ms
297,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y = map(int,input().split())
m = [list(map(int,input().split())) for i in range(n)]

INF = 10**15
dp = [[[-INF]*(y+1) for i in range(x+1)] for i in range(n+1)]
dp[0][0][0] = 0

for i in range(1, n+1):
    a,b,c, = m[i-1]
    for j in range(y+1):
        for k in range(x+1):
            dp[i][j][k] = dp[i-1][j][k]
            if j-a >= 0 and k-b >= 0:
                dp[i][j][k] = max(dp[i][j][k] ,dp[i-1][j-a][k-b] + c)


ans = -INF
for j in range(x+1):
    for k in range(y+1):
        ans = max(ans, dp[-1][j][k])

print(ans)
0