結果

問題 No.2317 Expression Menu
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 01:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,080 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,480 KB
最終ジャッジ日時 2024-06-07 21:08:34
合計ジャッジ時間 26,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 122 ms
78,092 KB
testcase_03 AC 699 ms
96,480 KB
testcase_04 AC 704 ms
95,616 KB
testcase_05 AC 687 ms
95,060 KB
testcase_06 AC 711 ms
96,112 KB
testcase_07 AC 703 ms
95,608 KB
testcase_08 AC 708 ms
96,072 KB
testcase_09 AC 665 ms
95,916 KB
testcase_10 AC 769 ms
95,596 KB
testcase_11 AC 838 ms
95,136 KB
testcase_12 AC 650 ms
95,340 KB
testcase_13 AC 821 ms
94,848 KB
testcase_14 AC 903 ms
95,724 KB
testcase_15 AC 650 ms
95,132 KB
testcase_16 AC 831 ms
96,128 KB
testcase_17 AC 713 ms
94,468 KB
testcase_18 AC 700 ms
95,848 KB
testcase_19 AC 887 ms
94,580 KB
testcase_20 AC 733 ms
94,444 KB
testcase_21 AC 704 ms
95,592 KB
testcase_22 AC 705 ms
94,236 KB
testcase_23 AC 911 ms
95,448 KB
testcase_24 AC 721 ms
94,684 KB
testcase_25 AC 711 ms
95,532 KB
testcase_26 AC 941 ms
95,744 KB
testcase_27 AC 933 ms
96,220 KB
testcase_28 AC 703 ms
95,112 KB
testcase_29 AC 740 ms
95,704 KB
testcase_30 AC 937 ms
95,084 KB
testcase_31 AC 928 ms
95,416 KB
testcase_32 AC 716 ms
94,828 KB
testcase_33 AC 37 ms
51,456 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 45 ms
62,336 KB
testcase_36 AC 37 ms
51,584 KB
testcase_37 AC 40 ms
52,736 KB
testcase_38 AC 760 ms
95,744 KB
testcase_39 AC 1,080 ms
95,884 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