結果

問題 No.2232 Miser's Gift
ユーザー hir355hir355
提出日時 2023-03-03 21:30:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 156,928 KB
最終ジャッジ日時 2024-09-17 22:22:40
合計ジャッジ時間 14,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 292 ms
156,032 KB
testcase_04 AC 286 ms
156,416 KB
testcase_05 AC 72 ms
73,600 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 69 ms
78,464 KB
testcase_08 AC 314 ms
156,288 KB
testcase_09 AC 321 ms
156,644 KB
testcase_10 AC 313 ms
156,288 KB
testcase_11 AC 312 ms
156,160 KB
testcase_12 AC 317 ms
156,672 KB
testcase_13 AC 291 ms
156,672 KB
testcase_14 AC 293 ms
156,672 KB
testcase_15 AC 292 ms
156,288 KB
testcase_16 AC 290 ms
156,800 KB
testcase_17 AC 294 ms
156,032 KB
testcase_18 AC 292 ms
156,160 KB
testcase_19 AC 290 ms
156,800 KB
testcase_20 AC 296 ms
156,288 KB
testcase_21 AC 292 ms
156,672 KB
testcase_22 AC 291 ms
156,288 KB
testcase_23 AC 393 ms
156,160 KB
testcase_24 AC 393 ms
156,160 KB
testcase_25 AC 394 ms
156,928 KB
testcase_26 AC 355 ms
156,544 KB
testcase_27 AC 394 ms
156,544 KB
testcase_28 AC 330 ms
156,672 KB
testcase_29 AC 316 ms
156,160 KB
testcase_30 AC 328 ms
156,160 KB
testcase_31 AC 318 ms
156,672 KB
testcase_32 AC 331 ms
156,544 KB
testcase_33 AC 292 ms
156,544 KB
testcase_34 AC 297 ms
156,032 KB
testcase_35 AC 300 ms
156,032 KB
testcase_36 AC 292 ms
156,032 KB
testcase_37 AC 296 ms
156,672 KB
testcase_38 AC 60 ms
66,048 KB
testcase_39 AC 60 ms
65,536 KB
testcase_40 AC 59 ms
66,048 KB
testcase_41 AC 60 ms
66,304 KB
testcase_42 AC 58 ms
64,896 KB
testcase_43 AC 60 ms
66,304 KB
testcase_44 AC 59 ms
66,048 KB
testcase_45 AC 56 ms
64,768 KB
testcase_46 AC 58 ms
65,280 KB
testcase_47 AC 58 ms
64,896 KB
testcase_48 AC 50 ms
62,080 KB
testcase_49 AC 51 ms
61,696 KB
testcase_50 AC 52 ms
62,208 KB
testcase_51 AC 50 ms
61,568 KB
testcase_52 AC 51 ms
62,080 KB
testcase_53 AC 51 ms
62,592 KB
testcase_54 AC 50 ms
61,952 KB
testcase_55 AC 52 ms
63,360 KB
testcase_56 AC 50 ms
62,080 KB
testcase_57 AC 52 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, W = map(int, input().split())
w = [0] * n
v = [0] * n
for i in range(n):
    w[i], v[i] = map(int, input().split())
dp = [[0] * (W + 1) for _ in range(n + 1)]
for i in range(n):
    for j in range(W + 1):
        if j >= w[i]:
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j - w[i]] + v[i])
        dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
for i in range(1, W + 1):
    print(dp[n][W] - dp[n][W - i] + 1)
0