結果

問題 No.2317 Expression Menu
ユーザー ryohei22ryohei22
提出日時 2023-06-03 00:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,246 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 298,240 KB
最終ジャッジ日時 2024-06-09 02:52:37
合計ジャッジ時間 37,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,224 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 130 ms
91,776 KB
testcase_03 AC 1,072 ms
297,708 KB
testcase_04 AC 1,023 ms
297,728 KB
testcase_05 AC 1,085 ms
297,984 KB
testcase_06 AC 1,027 ms
297,856 KB
testcase_07 AC 1,079 ms
298,240 KB
testcase_08 AC 1,078 ms
297,984 KB
testcase_09 AC 1,060 ms
297,708 KB
testcase_10 AC 1,079 ms
297,984 KB
testcase_11 AC 1,101 ms
297,700 KB
testcase_12 AC 1,013 ms
297,600 KB
testcase_13 AC 1,073 ms
297,344 KB
testcase_14 AC 1,035 ms
297,672 KB
testcase_15 AC 1,000 ms
297,856 KB
testcase_16 AC 1,062 ms
297,856 KB
testcase_17 AC 966 ms
297,856 KB
testcase_18 AC 1,067 ms
297,708 KB
testcase_19 AC 1,085 ms
298,052 KB
testcase_20 AC 1,088 ms
297,600 KB
testcase_21 AC 1,041 ms
297,672 KB
testcase_22 AC 1,036 ms
297,704 KB
testcase_23 AC 1,246 ms
297,904 KB
testcase_24 AC 990 ms
297,924 KB
testcase_25 AC 988 ms
297,856 KB
testcase_26 AC 1,235 ms
298,068 KB
testcase_27 AC 1,245 ms
297,984 KB
testcase_28 AC 1,009 ms
297,744 KB
testcase_29 AC 988 ms
297,984 KB
testcase_30 AC 1,234 ms
297,916 KB
testcase_31 AC 1,238 ms
297,760 KB
testcase_32 AC 993 ms
297,600 KB
testcase_33 AC 32 ms
51,968 KB
testcase_34 AC 30 ms
51,968 KB
testcase_35 AC 40 ms
61,696 KB
testcase_36 AC 32 ms
52,608 KB
testcase_37 AC 32 ms
52,736 KB
testcase_38 AC 1,121 ms
297,728 KB
testcase_39 AC 1,147 ms
297,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
A = [tuple(map(int, input().split())) for _ in range(N)]

# dp[i][j][j]: i番目の機能までの実装/非実装が確定しており、メニュー枠をi、容量をj消費している時にあげられる可愛さの最大値。
# 初期化: dp[i][j][k] = 0
# 答え: max[0<=x<=X, 0<=y<=Y]{dp[N][x][y]}

dp = [[[0] * (Y + 1) for _ in range(X+1)] for _ in range(N+1)]
for i in range(N):
	a, b, c = A[i]
	for x in range(X+1):
		for y in range(Y+1):
			dp[i+1][x][y] = max(dp[i+1][x][y], dp[i][x][y])
			if x + a <= X and y + b <= Y:
				dp[i+1][x+a][y+b] = max(dp[i][x+a][y+b], dp[i][x][y] + c)

# import pprint; pprint.pprint(dp)
ans = 0
for x in range(X+1):
	for y in range(Y+1):
		ans = max(ans, dp[N][x][y])
print(ans)
0