結果

問題 No.1858 Gorgeous Knapsack
ユーザー roarisroaris
提出日時 2022-02-28 01:15:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 272,664 KB
最終ジャッジ日時 2024-07-06 04:18:46
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,540 KB
testcase_01 AC 37 ms
52,768 KB
testcase_02 AC 35 ms
53,840 KB
testcase_03 AC 49 ms
66,028 KB
testcase_04 AC 193 ms
111,924 KB
testcase_05 AC 70 ms
73,816 KB
testcase_06 AC 219 ms
111,428 KB
testcase_07 AC 137 ms
87,900 KB
testcase_08 AC 239 ms
133,656 KB
testcase_09 AC 439 ms
177,508 KB
testcase_10 AC 156 ms
105,560 KB
testcase_11 AC 263 ms
129,076 KB
testcase_12 AC 294 ms
154,404 KB
testcase_13 AC 79 ms
81,472 KB
testcase_14 AC 41 ms
61,216 KB
testcase_15 AC 39 ms
60,136 KB
testcase_16 AC 41 ms
61,088 KB
testcase_17 AC 33 ms
53,828 KB
testcase_18 AC 32 ms
53,380 KB
testcase_19 AC 33 ms
52,608 KB
testcase_20 AC 35 ms
53,840 KB
testcase_21 AC 33 ms
52,212 KB
testcase_22 AC 32 ms
53,536 KB
testcase_23 AC 31 ms
53,384 KB
testcase_24 AC 104 ms
90,644 KB
testcase_25 AC 316 ms
154,724 KB
testcase_26 AC 280 ms
134,336 KB
testcase_27 AC 263 ms
133,852 KB
testcase_28 AC 185 ms
109,624 KB
testcase_29 AC 55 ms
69,064 KB
testcase_30 AC 53 ms
68,804 KB
testcase_31 AC 54 ms
69,400 KB
testcase_32 AC 54 ms
69,032 KB
testcase_33 AC 60 ms
71,668 KB
testcase_34 AC 611 ms
272,516 KB
testcase_35 AC 415 ms
272,576 KB
testcase_36 AC 601 ms
272,664 KB
testcase_37 AC 31 ms
52,092 KB
testcase_38 AC 47 ms
68,452 KB
testcase_39 AC 39 ms
59,668 KB
testcase_40 AC 402 ms
272,560 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) for _ in range(N+1)]
ans = 0

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

print(ans)
0