結果

問題 No.1858 Gorgeous Knapsack
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-22 17:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 273,208 KB
最終ジャッジ日時 2024-10-10 09:37:39
合計ジャッジ時間 8,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,500 KB
testcase_01 AC 39 ms
52,288 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 54 ms
65,844 KB
testcase_04 AC 233 ms
105,412 KB
testcase_05 AC 92 ms
83,280 KB
testcase_06 AC 268 ms
123,484 KB
testcase_07 AC 177 ms
102,776 KB
testcase_08 AC 289 ms
143,480 KB
testcase_09 AC 519 ms
191,536 KB
testcase_10 AC 192 ms
99,536 KB
testcase_11 AC 287 ms
122,616 KB
testcase_12 AC 357 ms
166,336 KB
testcase_13 AC 103 ms
77,288 KB
testcase_14 AC 50 ms
61,492 KB
testcase_15 AC 45 ms
59,804 KB
testcase_16 AC 47 ms
60,532 KB
testcase_17 AC 38 ms
52,704 KB
testcase_18 AC 37 ms
53,360 KB
testcase_19 AC 38 ms
52,836 KB
testcase_20 AC 38 ms
52,212 KB
testcase_21 AC 38 ms
53,528 KB
testcase_22 AC 38 ms
52,208 KB
testcase_23 AC 38 ms
53,440 KB
testcase_24 AC 124 ms
89,716 KB
testcase_25 AC 366 ms
145,480 KB
testcase_26 AC 314 ms
126,688 KB
testcase_27 AC 301 ms
126,548 KB
testcase_28 AC 226 ms
119,848 KB
testcase_29 AC 89 ms
77,436 KB
testcase_30 AC 84 ms
77,552 KB
testcase_31 AC 84 ms
76,888 KB
testcase_32 AC 85 ms
77,236 KB
testcase_33 AC 90 ms
77,616 KB
testcase_34 AC 736 ms
272,848 KB
testcase_35 AC 457 ms
273,208 KB
testcase_36 AC 733 ms
273,164 KB
testcase_37 AC 35 ms
52,700 KB
testcase_38 AC 76 ms
77,148 KB
testcase_39 AC 41 ms
58,968 KB
testcase_40 AC 459 ms
272,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
item=[list(map(int,input().split())) for _ in range(n)]
item.sort(reverse=True)
dp=[[0]*(1+m) for _ in range(n+1)]
ans=0
for i in range(n):
    v,w=item[i]
    for j in range(m+1):
        dp[i+1][j]=max(dp[i+1][j],dp[i][j])
        if j+w<=m:
            if dp[i+1][j+w]<dp[i][j]+v:
                dp[i+1][j+w]=dp[i][j]+v
                ans=max(ans,v*dp[i+1][j+w])
print(ans)
0