結果

問題 No.2317 Expression Menu
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 01:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,316 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 96,532 KB
最終ジャッジ日時 2024-12-26 06:28:58
合計ジャッジ時間 33,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 50 ms
51,968 KB
testcase_02 AC 176 ms
78,336 KB
testcase_03 AC 886 ms
96,476 KB
testcase_04 AC 871 ms
96,256 KB
testcase_05 AC 861 ms
95,324 KB
testcase_06 AC 902 ms
96,236 KB
testcase_07 AC 882 ms
95,736 KB
testcase_08 AC 913 ms
96,344 KB
testcase_09 AC 852 ms
95,660 KB
testcase_10 AC 953 ms
95,836 KB
testcase_11 AC 1,055 ms
95,264 KB
testcase_12 AC 818 ms
95,260 KB
testcase_13 AC 1,013 ms
95,360 KB
testcase_14 AC 1,098 ms
95,776 KB
testcase_15 AC 820 ms
95,888 KB
testcase_16 AC 1,060 ms
95,360 KB
testcase_17 AC 874 ms
95,620 KB
testcase_18 AC 885 ms
95,588 KB
testcase_19 AC 1,113 ms
94,876 KB
testcase_20 AC 896 ms
94,580 KB
testcase_21 AC 869 ms
95,512 KB
testcase_22 AC 880 ms
94,876 KB
testcase_23 AC 1,141 ms
95,108 KB
testcase_24 AC 901 ms
94,360 KB
testcase_25 AC 877 ms
95,708 KB
testcase_26 AC 1,145 ms
95,988 KB
testcase_27 AC 1,162 ms
96,008 KB
testcase_28 AC 899 ms
95,112 KB
testcase_29 AC 929 ms
95,008 KB
testcase_30 AC 1,165 ms
95,204 KB
testcase_31 AC 1,143 ms
95,616 KB
testcase_32 AC 888 ms
95,612 KB
testcase_33 AC 48 ms
51,968 KB
testcase_34 AC 50 ms
51,968 KB
testcase_35 AC 66 ms
61,824 KB
testcase_36 AC 51 ms
52,096 KB
testcase_37 AC 49 ms
52,480 KB
testcase_38 AC 942 ms
96,000 KB
testcase_39 AC 1,316 ms
96,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]

INF = 10**18
dp = [[-INF]*(Y+1) for _ in range(X+1)]
dp[0][0] = 0
for a, b, c in A:
    ndp = [[v for v in d] for d in dp]
    for i in range(X+1):
        for j in range(Y+1):
            if i+a <= X and j+b <= Y:
                ndp[i+a][j+b] = max(ndp[i+a][j+b], dp[i][j]+c)
            dp[i][j] = max(dp[i][j], ndp[i][j])

print(max(max(a) for a in dp))
0