結果

問題 No.2317 Expression Menu
ユーザー qibqib
提出日時 2023-05-30 21:07:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-06-08 20:40:15
合計ジャッジ時間 8,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 58 ms
62,720 KB
testcase_03 AC 123 ms
69,504 KB
testcase_04 AC 121 ms
68,864 KB
testcase_05 AC 133 ms
69,504 KB
testcase_06 AC 122 ms
69,888 KB
testcase_07 AC 124 ms
69,632 KB
testcase_08 AC 121 ms
70,400 KB
testcase_09 AC 133 ms
69,504 KB
testcase_10 AC 127 ms
69,632 KB
testcase_11 AC 134 ms
70,656 KB
testcase_12 AC 130 ms
71,040 KB
testcase_13 AC 124 ms
69,120 KB
testcase_14 AC 147 ms
69,504 KB
testcase_15 AC 119 ms
70,016 KB
testcase_16 AC 127 ms
68,352 KB
testcase_17 AC 130 ms
70,144 KB
testcase_18 AC 178 ms
70,528 KB
testcase_19 AC 137 ms
69,120 KB
testcase_20 AC 140 ms
70,144 KB
testcase_21 AC 120 ms
69,632 KB
testcase_22 AC 123 ms
69,888 KB
testcase_23 AC 354 ms
71,680 KB
testcase_24 AC 339 ms
71,296 KB
testcase_25 AC 327 ms
71,680 KB
testcase_26 AC 324 ms
71,424 KB
testcase_27 AC 329 ms
71,680 KB
testcase_28 AC 347 ms
72,064 KB
testcase_29 AC 353 ms
72,064 KB
testcase_30 AC 349 ms
71,424 KB
testcase_31 AC 327 ms
71,168 KB
testcase_32 AC 325 ms
71,936 KB
testcase_33 AC 40 ms
51,840 KB
testcase_34 AC 40 ms
51,712 KB
testcase_35 AC 50 ms
60,160 KB
testcase_36 AC 41 ms
51,968 KB
testcase_37 AC 43 ms
52,608 KB
testcase_38 AC 172 ms
68,992 KB
testcase_39 AC 206 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n, x, y = map(int, input().split())

items = [list(map(int, input().split())) for _ in range(n)]

dp = [[- INF for _ in range(y + 1)] for _ in range(x + 1)]
dp[0][0] = 0
for ai, bi, ci in items:
  for i in range(x, ai - 1, -1):
    for j in range(y, bi - 1, -1):
      if dp[i - ai][j - bi] < 0:
        continue
      dp[i][j] = max(dp[i][j], dp[i - ai][j - bi] + ci)

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

print(ans)
0