結果

問題 No.2317 Expression Menu
ユーザー yabityabit
提出日時 2023-06-19 12:38:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,514 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 299,060 KB
最終ジャッジ日時 2024-06-27 00:52:20
合計ジャッジ時間 46,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,068 KB
testcase_01 AC 38 ms
52,400 KB
testcase_02 AC 156 ms
92,064 KB
testcase_03 AC 1,367 ms
297,824 KB
testcase_04 AC 1,371 ms
298,380 KB
testcase_05 AC 1,392 ms
298,124 KB
testcase_06 AC 1,339 ms
298,388 KB
testcase_07 AC 1,348 ms
297,948 KB
testcase_08 AC 1,387 ms
297,920 KB
testcase_09 AC 1,399 ms
298,364 KB
testcase_10 AC 1,324 ms
297,948 KB
testcase_11 AC 1,362 ms
298,264 KB
testcase_12 AC 1,386 ms
299,060 KB
testcase_13 AC 1,384 ms
298,048 KB
testcase_14 AC 1,370 ms
298,088 KB
testcase_15 AC 1,324 ms
297,936 KB
testcase_16 AC 1,361 ms
298,580 KB
testcase_17 AC 1,100 ms
297,760 KB
testcase_18 AC 1,328 ms
298,160 KB
testcase_19 AC 1,375 ms
298,280 KB
testcase_20 AC 1,375 ms
298,136 KB
testcase_21 AC 1,376 ms
297,876 KB
testcase_22 AC 1,371 ms
298,144 KB
testcase_23 AC 1,505 ms
298,048 KB
testcase_24 AC 1,501 ms
298,216 KB
testcase_25 AC 1,482 ms
298,400 KB
testcase_26 AC 1,497 ms
298,496 KB
testcase_27 AC 1,495 ms
298,280 KB
testcase_28 AC 1,514 ms
298,372 KB
testcase_29 AC 1,495 ms
298,124 KB
testcase_30 AC 1,510 ms
298,088 KB
testcase_31 AC 1,504 ms
297,956 KB
testcase_32 AC 1,490 ms
298,316 KB
testcase_33 AC 37 ms
52,340 KB
testcase_34 AC 37 ms
53,212 KB
testcase_35 AC 44 ms
60,888 KB
testcase_36 AC 37 ms
52,820 KB
testcase_37 AC 38 ms
54,484 KB
testcase_38 AC 1,195 ms
298,224 KB
testcase_39 AC 1,243 ms
297,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int, input().split())
dp = [[[0]*(Y+1) for _ in range(X+1)] for _ in range(N+1)]
ans = 0
for i in range(N):
    a,b,c = map(int, input().split())
    for j in range(X+1):
        for k in range(Y+1):
            dp[i+1][j][k] = max(dp[i+1][j][k], dp[i][j][k])
            if j+a <= X and k+b <= Y:
                dp[i+1][j+a][k+b] = max(dp[i+1][j+a][k+b], dp[i][j][k]+c)
            ans = max(ans, dp[i+1][j][k])
print(ans)
0