結果

問題 No.2232 Miser's Gift
ユーザー satama6satama6
提出日時 2023-03-03 21:28:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 156,328 KB
最終ジャッジ日時 2024-09-17 22:20:34
合計ジャッジ時間 13,232 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,592 KB
testcase_01 AC 34 ms
52,464 KB
testcase_02 AC 37 ms
52,280 KB
testcase_03 AC 291 ms
155,584 KB
testcase_04 AC 302 ms
154,932 KB
testcase_05 AC 86 ms
84,040 KB
testcase_06 AC 38 ms
52,632 KB
testcase_07 AC 67 ms
77,588 KB
testcase_08 AC 291 ms
155,300 KB
testcase_09 AC 287 ms
155,072 KB
testcase_10 AC 290 ms
155,544 KB
testcase_11 AC 322 ms
155,116 KB
testcase_12 AC 288 ms
155,728 KB
testcase_13 AC 278 ms
155,440 KB
testcase_14 AC 281 ms
155,284 KB
testcase_15 AC 274 ms
155,604 KB
testcase_16 AC 284 ms
155,232 KB
testcase_17 AC 296 ms
155,496 KB
testcase_18 AC 287 ms
155,704 KB
testcase_19 AC 285 ms
155,448 KB
testcase_20 AC 283 ms
155,228 KB
testcase_21 AC 286 ms
155,560 KB
testcase_22 AC 282 ms
155,216 KB
testcase_23 AC 326 ms
155,552 KB
testcase_24 AC 322 ms
155,728 KB
testcase_25 AC 324 ms
155,336 KB
testcase_26 AC 313 ms
155,192 KB
testcase_27 AC 318 ms
155,432 KB
testcase_28 AC 316 ms
155,528 KB
testcase_29 AC 306 ms
155,332 KB
testcase_30 AC 296 ms
155,380 KB
testcase_31 AC 321 ms
156,328 KB
testcase_32 AC 341 ms
155,388 KB
testcase_33 AC 279 ms
155,636 KB
testcase_34 AC 283 ms
154,980 KB
testcase_35 AC 283 ms
155,168 KB
testcase_36 AC 279 ms
155,356 KB
testcase_37 AC 279 ms
155,484 KB
testcase_38 AC 56 ms
67,164 KB
testcase_39 AC 55 ms
66,488 KB
testcase_40 AC 56 ms
67,148 KB
testcase_41 AC 55 ms
65,900 KB
testcase_42 AC 56 ms
67,376 KB
testcase_43 AC 55 ms
67,004 KB
testcase_44 AC 53 ms
66,552 KB
testcase_45 AC 54 ms
66,228 KB
testcase_46 AC 55 ms
67,020 KB
testcase_47 AC 55 ms
66,980 KB
testcase_48 AC 47 ms
64,580 KB
testcase_49 AC 46 ms
62,728 KB
testcase_50 AC 48 ms
64,556 KB
testcase_51 AC 48 ms
63,660 KB
testcase_52 AC 48 ms
62,440 KB
testcase_53 AC 51 ms
62,472 KB
testcase_54 AC 46 ms
62,604 KB
testcase_55 AC 47 ms
62,896 KB
testcase_56 AC 46 ms
63,556 KB
testcase_57 AC 47 ms
62,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
dp = [[0 for _ in range(W+1)] for _ in range(N+1)]

for i in range(N):
    w, v = map(int, input().split())

    for weight in range(W+1):
        if weight + w <= W : dp[i+1][weight + w] = max(dp[i+1][weight + w], dp[i][weight] + v)
        dp[i+1][weight] = max(dp[i+1][weight], dp[i][weight])

t = max(dp[N]) + 1

for x in range(1, W+1):
    print(t - dp[N][W-x])
0