結果

問題 No.1858 Gorgeous Knapsack
ユーザー roarisroaris
提出日時 2022-02-28 01:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-06 04:21:11
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,240 KB
testcase_01 AC 37 ms
52,328 KB
testcase_02 AC 34 ms
52,092 KB
testcase_03 AC 47 ms
63,900 KB
testcase_04 AC 131 ms
76,684 KB
testcase_05 AC 65 ms
74,428 KB
testcase_06 AC 141 ms
76,744 KB
testcase_07 AC 97 ms
76,308 KB
testcase_08 AC 147 ms
76,316 KB
testcase_09 AC 270 ms
76,988 KB
testcase_10 AC 113 ms
76,568 KB
testcase_11 AC 147 ms
76,684 KB
testcase_12 AC 179 ms
76,680 KB
testcase_13 AC 71 ms
76,700 KB
testcase_14 AC 43 ms
60,748 KB
testcase_15 AC 41 ms
59,424 KB
testcase_16 AC 40 ms
60,380 KB
testcase_17 AC 35 ms
53,776 KB
testcase_18 AC 33 ms
53,468 KB
testcase_19 AC 34 ms
53,200 KB
testcase_20 AC 33 ms
52,304 KB
testcase_21 AC 33 ms
52,528 KB
testcase_22 AC 32 ms
53,928 KB
testcase_23 AC 34 ms
53,272 KB
testcase_24 AC 82 ms
76,320 KB
testcase_25 AC 213 ms
76,632 KB
testcase_26 AC 157 ms
76,900 KB
testcase_27 AC 171 ms
76,828 KB
testcase_28 AC 122 ms
76,596 KB
testcase_29 AC 53 ms
68,496 KB
testcase_30 AC 51 ms
67,524 KB
testcase_31 AC 53 ms
69,520 KB
testcase_32 AC 53 ms
67,540 KB
testcase_33 AC 55 ms
71,068 KB
testcase_34 AC 208 ms
77,696 KB
testcase_35 AC 166 ms
77,488 KB
testcase_36 AC 199 ms
77,112 KB
testcase_37 AC 35 ms
53,484 KB
testcase_38 AC 47 ms
68,860 KB
testcase_39 AC 39 ms
59,944 KB
testcase_40 AC 167 ms
77,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
VW = [tuple(map(int, input().split())) for _ in range(N)]
VW.sort(reverse=True)
dp = [0]*(M+1)
ans = 0

for i in range(N):
    V, W = VW[i]
    ndp = [0]*(M+1)
    
    for j in range(M+1):
        ndp[j] = max(ndp[j], dp[j])
        
        if j+W<=M:
            ndp[j+W] = max(ndp[j+W], dp[j]+V)
            ans = max(ans, ndp[j+W]*V)
    
    dp = ndp

print(ans)
0