結果

問題 No.2317 Expression Menu
ユーザー june19312june19312
提出日時 2023-05-27 14:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-06-07 16:32:23
合計ジャッジ時間 11,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 78 ms
66,048 KB
testcase_03 AC 225 ms
77,056 KB
testcase_04 AC 235 ms
73,756 KB
testcase_05 AC 295 ms
74,284 KB
testcase_06 AC 218 ms
76,652 KB
testcase_07 AC 301 ms
77,016 KB
testcase_08 AC 225 ms
77,036 KB
testcase_09 AC 296 ms
76,828 KB
testcase_10 AC 212 ms
77,056 KB
testcase_11 AC 228 ms
76,812 KB
testcase_12 AC 242 ms
77,516 KB
testcase_13 AC 216 ms
73,856 KB
testcase_14 AC 314 ms
76,544 KB
testcase_15 AC 291 ms
77,312 KB
testcase_16 AC 294 ms
73,856 KB
testcase_17 AC 296 ms
74,496 KB
testcase_18 AC 202 ms
76,956 KB
testcase_19 AC 304 ms
77,120 KB
testcase_20 AC 306 ms
76,672 KB
testcase_21 AC 244 ms
76,928 KB
testcase_22 AC 247 ms
76,928 KB
testcase_23 AC 428 ms
76,544 KB
testcase_24 AC 423 ms
76,892 KB
testcase_25 AC 399 ms
76,928 KB
testcase_26 AC 396 ms
76,928 KB
testcase_27 AC 400 ms
77,220 KB
testcase_28 AC 412 ms
77,184 KB
testcase_29 AC 427 ms
76,800 KB
testcase_30 AC 415 ms
76,544 KB
testcase_31 AC 403 ms
76,928 KB
testcase_32 AC 399 ms
76,752 KB
testcase_33 AC 41 ms
51,840 KB
testcase_34 AC 40 ms
51,584 KB
testcase_35 AC 51 ms
60,800 KB
testcase_36 AC 41 ms
51,968 KB
testcase_37 AC 42 ms
52,096 KB
testcase_38 AC 209 ms
72,960 KB
testcase_39 AC 213 ms
74,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int,input().split())

dp = []

for i in range(X+1):
    dp.append([-1]*(Y+1))

dp[0][0] = 0

for _ in range(N):
    A,B,C = map(int,input().split())
    
    for i in range(X,0,-1):
        for j in range(Y+1):
            if j-B >= 0 and i-A >= 0 and dp[i-A][j-B] != -1:
                dp[i][j] = max(dp[i][j],dp[i-A][j-B]+C)

ans = 0
for i in range(X+1):
    for j in range(Y+1):
        ans = max(ans,dp[i][j])

print(ans)
0