結果

問題 No.1858 Gorgeous Knapsack
ユーザー pluto77pluto77
提出日時 2022-03-04 10:22:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-18 07:38:07
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 34 ms
52,196 KB
testcase_03 AC 41 ms
59,136 KB
testcase_04 AC 87 ms
72,524 KB
testcase_05 AC 56 ms
64,384 KB
testcase_06 AC 94 ms
73,728 KB
testcase_07 AC 95 ms
76,672 KB
testcase_08 AC 117 ms
75,136 KB
testcase_09 AC 146 ms
76,800 KB
testcase_10 AC 102 ms
76,928 KB
testcase_11 AC 103 ms
76,800 KB
testcase_12 AC 112 ms
76,928 KB
testcase_13 AC 88 ms
76,928 KB
testcase_14 AC 42 ms
58,240 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 42 ms
58,240 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 36 ms
51,840 KB
testcase_20 AC 35 ms
51,712 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 AC 36 ms
51,712 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 59 ms
64,000 KB
testcase_25 AC 111 ms
77,184 KB
testcase_26 AC 96 ms
74,752 KB
testcase_27 AC 101 ms
74,368 KB
testcase_28 AC 95 ms
76,892 KB
testcase_29 AC 74 ms
72,832 KB
testcase_30 AC 85 ms
76,672 KB
testcase_31 AC 77 ms
73,760 KB
testcase_32 AC 75 ms
73,216 KB
testcase_33 AC 82 ms
76,904 KB
testcase_34 AC 185 ms
77,104 KB
testcase_35 AC 80 ms
76,928 KB
testcase_36 AC 212 ms
77,016 KB
testcase_37 AC 37 ms
51,712 KB
testcase_38 AC 80 ms
76,800 KB
testcase_39 AC 42 ms
58,240 KB
testcase_40 AC 81 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1858
n,m=map(int,input().split())
l=[]
for i in range(n):
 l.append(list(map(int,input().split())))
l.sort(key=lambda x:x[0],reverse=True)
res=0
dp=[0]*(m+1)
for v,w in l:
 for i in range(m-w,-1,-1):
  dp[i+w]=max(dp[i+w],dp[i]+v)
 res=max(res,v*dp[m])
print(res)
0