結果

問題 No.2317 Expression Menu
ユーザー rlangevinrlangevin
提出日時 2023-05-26 21:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,237 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 101,660 KB
最終ジャッジ日時 2024-06-07 05:43:17
合計ジャッジ時間 30,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 125 ms
79,872 KB
testcase_03 AC 901 ms
101,660 KB
testcase_04 AC 886 ms
99,672 KB
testcase_05 AC 884 ms
98,688 KB
testcase_06 AC 880 ms
99,168 KB
testcase_07 AC 848 ms
99,456 KB
testcase_08 AC 885 ms
99,072 KB
testcase_09 AC 840 ms
99,148 KB
testcase_10 AC 909 ms
99,492 KB
testcase_11 AC 913 ms
99,172 KB
testcase_12 AC 848 ms
101,028 KB
testcase_13 AC 816 ms
99,200 KB
testcase_14 AC 841 ms
99,052 KB
testcase_15 AC 822 ms
99,444 KB
testcase_16 AC 838 ms
99,584 KB
testcase_17 AC 590 ms
99,200 KB
testcase_18 AC 828 ms
99,076 KB
testcase_19 AC 845 ms
99,052 KB
testcase_20 AC 910 ms
99,096 KB
testcase_21 AC 862 ms
99,468 KB
testcase_22 AC 828 ms
99,148 KB
testcase_23 AC 935 ms
99,948 KB
testcase_24 AC 922 ms
99,728 KB
testcase_25 AC 1,022 ms
101,188 KB
testcase_26 AC 1,114 ms
100,608 KB
testcase_27 AC 1,220 ms
101,528 KB
testcase_28 AC 904 ms
99,840 KB
testcase_29 AC 921 ms
101,228 KB
testcase_30 AC 1,237 ms
100,540 KB
testcase_31 AC 923 ms
101,248 KB
testcase_32 AC 905 ms
100,512 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 47 ms
62,080 KB
testcase_36 AC 37 ms
52,352 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 AC 713 ms
99,584 KB
testcase_39 AC 962 ms
99,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
inf = 10 ** 18
pre = [[-inf] * (Y + 1) for i in range(X + 1)]
pre[0][0] = 0
for i in range(N):
    A, B, C = map(int, input().split())
    dp = [[-inf] * (Y + 1) for i in range(X + 1)]
    for x in range(X + 1):
        for y in range(Y + 1):
            dp[x][y] = max(dp[x][y], pre[x][y])
            if x >= A and y >= B:
                dp[x][y] = max(dp[x][y], pre[x - A][y - B] + C)
            
    dp, pre = pre, dp
    
ans = 0
for i in range(X + 1):
    for j in range(Y + 1):
        ans = max(ans, pre[i][j])
print(ans)
0