結果

問題 No.2317 Expression Menu
ユーザー KudeKude
提出日時 2023-05-26 21:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-06-07 05:41:47
合計ジャッジ時間 10,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 59 ms
62,080 KB
testcase_03 AC 171 ms
68,736 KB
testcase_04 AC 172 ms
67,712 KB
testcase_05 AC 174 ms
68,992 KB
testcase_06 AC 176 ms
68,992 KB
testcase_07 AC 145 ms
68,864 KB
testcase_08 AC 175 ms
69,248 KB
testcase_09 AC 149 ms
68,608 KB
testcase_10 AC 179 ms
68,096 KB
testcase_11 AC 187 ms
69,504 KB
testcase_12 AC 158 ms
71,680 KB
testcase_13 AC 171 ms
67,712 KB
testcase_14 AC 189 ms
68,480 KB
testcase_15 AC 146 ms
69,120 KB
testcase_16 AC 182 ms
67,456 KB
testcase_17 AC 169 ms
68,736 KB
testcase_18 AC 205 ms
67,712 KB
testcase_19 AC 190 ms
68,352 KB
testcase_20 AC 190 ms
69,632 KB
testcase_21 AC 169 ms
68,736 KB
testcase_22 AC 142 ms
69,376 KB
testcase_23 AC 474 ms
70,784 KB
testcase_24 AC 475 ms
70,400 KB
testcase_25 AC 488 ms
70,656 KB
testcase_26 AC 481 ms
70,272 KB
testcase_27 AC 482 ms
70,272 KB
testcase_28 AC 464 ms
70,400 KB
testcase_29 AC 474 ms
70,144 KB
testcase_30 AC 478 ms
70,400 KB
testcase_31 AC 483 ms
70,272 KB
testcase_32 AC 479 ms
70,400 KB
testcase_33 AC 40 ms
51,712 KB
testcase_34 AC 39 ms
51,840 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 38 ms
51,456 KB
testcase_37 AC 38 ms
51,840 KB
testcase_38 AC 455 ms
70,784 KB
testcase_39 AC 408 ms
69,888 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 i in range(x - a, -1, -1):
        for j in range(y - b, -1, -1):
            ni = i + a
            nj = j + b
            dp[ni][nj] = max(dp[ni][nj], dp[i][j] + c)
print(dp[x][y])
0