結果

問題 No.2232 Miser's Gift
ユーザー chankei271828chankei271828
提出日時 2023-03-03 23:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 156,880 KB
最終ジャッジ日時 2024-09-18 00:31:23
合計ジャッジ時間 13,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,736 KB
testcase_01 AC 47 ms
64,832 KB
testcase_02 AC 44 ms
63,660 KB
testcase_03 AC 216 ms
156,356 KB
testcase_04 AC 217 ms
156,484 KB
testcase_05 AC 187 ms
147,084 KB
testcase_06 AC 38 ms
60,300 KB
testcase_07 AC 61 ms
78,896 KB
testcase_08 AC 218 ms
156,600 KB
testcase_09 AC 226 ms
156,552 KB
testcase_10 AC 221 ms
156,540 KB
testcase_11 AC 255 ms
156,160 KB
testcase_12 AC 226 ms
156,576 KB
testcase_13 AC 205 ms
156,288 KB
testcase_14 AC 226 ms
156,752 KB
testcase_15 AC 207 ms
156,552 KB
testcase_16 AC 210 ms
156,676 KB
testcase_17 AC 212 ms
156,772 KB
testcase_18 AC 211 ms
156,672 KB
testcase_19 AC 225 ms
156,220 KB
testcase_20 AC 208 ms
156,600 KB
testcase_21 AC 218 ms
156,708 KB
testcase_22 AC 215 ms
156,768 KB
testcase_23 AC 265 ms
156,280 KB
testcase_24 AC 271 ms
156,212 KB
testcase_25 AC 274 ms
156,336 KB
testcase_26 AC 265 ms
156,600 KB
testcase_27 AC 263 ms
156,680 KB
testcase_28 AC 220 ms
156,672 KB
testcase_29 AC 221 ms
156,468 KB
testcase_30 AC 228 ms
156,520 KB
testcase_31 AC 249 ms
156,584 KB
testcase_32 AC 257 ms
156,456 KB
testcase_33 AC 213 ms
156,640 KB
testcase_34 AC 216 ms
156,772 KB
testcase_35 AC 216 ms
156,880 KB
testcase_36 AC 206 ms
156,664 KB
testcase_37 AC 207 ms
156,792 KB
testcase_38 AC 205 ms
144,708 KB
testcase_39 AC 194 ms
143,472 KB
testcase_40 AC 192 ms
144,484 KB
testcase_41 AC 193 ms
144,224 KB
testcase_42 AC 190 ms
143,908 KB
testcase_43 AC 188 ms
144,104 KB
testcase_44 AC 189 ms
144,332 KB
testcase_45 AC 192 ms
144,060 KB
testcase_46 AC 195 ms
143,960 KB
testcase_47 AC 194 ms
143,984 KB
testcase_48 AC 187 ms
141,224 KB
testcase_49 AC 189 ms
142,440 KB
testcase_50 AC 192 ms
141,480 KB
testcase_51 AC 189 ms
142,116 KB
testcase_52 AC 184 ms
142,324 KB
testcase_53 AC 185 ms
141,760 KB
testcase_54 AC 186 ms
142,448 KB
testcase_55 AC 183 ms
142,552 KB
testcase_56 AC 183 ms
143,188 KB
testcase_57 AC 186 ms
142,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W=map(int,input().split())
pre=[tuple(map(int,input().split())) for _ in range(N)]
dp=[[0]*(10**5+1) for _ in range(N+1)]
#dp[i][j]:i番目の品物までで、重さjになる組み合わせの中での勝ちの総和の最大値
for i in range(1,N+1):
    w,v=pre[i-1]
    for j in range(1,10**5+1):
        if j-w>=0:
            dp[i][j]=max(dp[i-1][j],dp[i-1][j-w]+v)
        else:
            dp[i][j]=dp[i-1][j]
for j in range(1,W+1):
    dp[-1][j]=max(dp[-1][j],dp[-1][j-1])
for X in range(1,W+1):
    print(dp[-1][W]-dp[-1][W-X]+1)
0