結果

問題 No.2317 Expression Menu
ユーザー なえしらなえしら
提出日時 2024-06-15 19:31:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-06-15 19:31:40
合計ジャッジ時間 11,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 57 ms
62,464 KB
testcase_03 AC 169 ms
68,608 KB
testcase_04 AC 167 ms
67,840 KB
testcase_05 AC 170 ms
69,376 KB
testcase_06 AC 172 ms
69,120 KB
testcase_07 AC 131 ms
68,864 KB
testcase_08 AC 174 ms
69,888 KB
testcase_09 AC 142 ms
68,608 KB
testcase_10 AC 177 ms
68,608 KB
testcase_11 AC 183 ms
69,376 KB
testcase_12 AC 144 ms
72,320 KB
testcase_13 AC 167 ms
67,968 KB
testcase_14 AC 183 ms
68,736 KB
testcase_15 AC 135 ms
69,504 KB
testcase_16 AC 177 ms
67,584 KB
testcase_17 AC 172 ms
69,248 KB
testcase_18 AC 225 ms
68,736 KB
testcase_19 AC 181 ms
68,480 KB
testcase_20 AC 184 ms
69,120 KB
testcase_21 AC 177 ms
68,992 KB
testcase_22 AC 137 ms
69,376 KB
testcase_23 AC 462 ms
70,528 KB
testcase_24 AC 466 ms
70,144 KB
testcase_25 AC 511 ms
70,912 KB
testcase_26 AC 476 ms
70,528 KB
testcase_27 AC 466 ms
70,584 KB
testcase_28 AC 492 ms
70,272 KB
testcase_29 AC 467 ms
70,912 KB
testcase_30 AC 485 ms
70,656 KB
testcase_31 AC 466 ms
70,272 KB
testcase_32 AC 467 ms
70,656 KB
testcase_33 AC 38 ms
51,712 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 39 ms
52,352 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 37 ms
52,224 KB
testcase_38 AC 422 ms
70,784 KB
testcase_39 AC 372 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
dp = [[0]*(Y+1) for _ in range(X+1)]

for _ in range(N):
  a, b, c = map(int, input().split())
  for x in range(X, a-1, -1):
    for y in range(Y, b-1, -1):
      dp[x][y] = max(dp[x][y], dp[x-a][y-b] + c)

print(dp[X][Y])
0