結果

問題 No.2232 Miser's Gift
ユーザー lloyzlloyz
提出日時 2023-03-07 01:10:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 156,872 KB
最終ジャッジ日時 2024-09-18 02:00:51
合計ジャッジ時間 11,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,188 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 195 ms
156,032 KB
testcase_04 AC 293 ms
156,160 KB
testcase_05 AC 73 ms
83,840 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 62 ms
78,208 KB
testcase_08 AC 178 ms
156,484 KB
testcase_09 AC 177 ms
156,544 KB
testcase_10 AC 176 ms
156,672 KB
testcase_11 AC 185 ms
155,904 KB
testcase_12 AC 190 ms
156,872 KB
testcase_13 AC 192 ms
156,416 KB
testcase_14 AC 201 ms
156,160 KB
testcase_15 AC 186 ms
156,416 KB
testcase_16 AC 187 ms
156,520 KB
testcase_17 AC 192 ms
156,672 KB
testcase_18 AC 184 ms
156,288 KB
testcase_19 AC 184 ms
156,672 KB
testcase_20 AC 188 ms
156,800 KB
testcase_21 AC 186 ms
156,776 KB
testcase_22 AC 189 ms
156,416 KB
testcase_23 AC 331 ms
156,416 KB
testcase_24 AC 333 ms
156,472 KB
testcase_25 AC 340 ms
156,160 KB
testcase_26 AC 333 ms
156,672 KB
testcase_27 AC 341 ms
156,476 KB
testcase_28 AC 281 ms
156,160 KB
testcase_29 AC 276 ms
156,160 KB
testcase_30 AC 275 ms
156,672 KB
testcase_31 AC 264 ms
156,672 KB
testcase_32 AC 262 ms
156,512 KB
testcase_33 AC 198 ms
156,544 KB
testcase_34 AC 199 ms
156,544 KB
testcase_35 AC 200 ms
156,416 KB
testcase_36 AC 203 ms
156,672 KB
testcase_37 AC 197 ms
156,292 KB
testcase_38 AC 54 ms
66,048 KB
testcase_39 AC 56 ms
66,816 KB
testcase_40 AC 58 ms
66,816 KB
testcase_41 AC 61 ms
66,688 KB
testcase_42 AC 60 ms
66,432 KB
testcase_43 AC 61 ms
67,072 KB
testcase_44 AC 60 ms
66,432 KB
testcase_45 AC 65 ms
67,072 KB
testcase_46 AC 61 ms
66,176 KB
testcase_47 AC 63 ms
66,176 KB
testcase_48 AC 52 ms
63,232 KB
testcase_49 AC 50 ms
62,336 KB
testcase_50 AC 51 ms
63,232 KB
testcase_51 AC 48 ms
63,104 KB
testcase_52 AC 47 ms
62,976 KB
testcase_53 AC 47 ms
62,848 KB
testcase_54 AC 50 ms
63,360 KB
testcase_55 AC 47 ms
63,616 KB
testcase_56 AC 49 ms
62,848 KB
testcase_57 AC 53 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
DP = [[-1 for _ in range(w + 1)] for _ in range(n + 1)]
DP[0][0] = 0
for i in range(n):
    ww, vv = map(int, input().split())
    for j in range(w + 1):
        if DP[i][j] != -1:
            DP[i + 1][j] = max(DP[i + 1][j], DP[i][j])
            if j + ww <= w:
                DP[i + 1][j + ww] = max(DP[i + 1][j + ww], DP[i][j] + vv)
for i in range(1, w + 1):
    DP[n][i] = max(DP[n][i], DP[n][i - 1])
for i in range(1, w + 1):
    print(DP[n][w] - DP[n][w - i] + 1)
0