結果

問題 No.2232 Miser's Gift
ユーザー ShirotsumeShirotsume
提出日時 2023-03-03 21:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 81,640 KB
実行使用メモリ 163,840 KB
最終ジャッジ日時 2024-09-17 22:16:18
合計ジャッジ時間 12,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,504 KB
testcase_01 AC 36 ms
53,368 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 276 ms
163,356 KB
testcase_04 AC 291 ms
163,540 KB
testcase_05 AC 88 ms
84,352 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 77 ms
85,248 KB
testcase_08 AC 273 ms
163,072 KB
testcase_09 AC 292 ms
163,072 KB
testcase_10 AC 289 ms
163,316 KB
testcase_11 AC 315 ms
163,200 KB
testcase_12 AC 285 ms
163,456 KB
testcase_13 AC 262 ms
163,384 KB
testcase_14 AC 259 ms
163,348 KB
testcase_15 AC 259 ms
163,072 KB
testcase_16 AC 259 ms
163,072 KB
testcase_17 AC 261 ms
163,328 KB
testcase_18 AC 259 ms
163,840 KB
testcase_19 AC 264 ms
163,200 KB
testcase_20 AC 260 ms
163,456 KB
testcase_21 AC 268 ms
163,200 KB
testcase_22 AC 271 ms
163,200 KB
testcase_23 AC 318 ms
163,072 KB
testcase_24 AC 309 ms
163,200 KB
testcase_25 AC 306 ms
163,200 KB
testcase_26 AC 309 ms
163,456 KB
testcase_27 AC 309 ms
163,384 KB
testcase_28 AC 290 ms
163,360 KB
testcase_29 AC 284 ms
163,200 KB
testcase_30 AC 287 ms
163,456 KB
testcase_31 AC 308 ms
163,456 KB
testcase_32 AC 312 ms
163,200 KB
testcase_33 AC 262 ms
163,200 KB
testcase_34 AC 264 ms
163,200 KB
testcase_35 AC 262 ms
163,520 KB
testcase_36 AC 265 ms
163,584 KB
testcase_37 AC 272 ms
163,456 KB
testcase_38 AC 57 ms
67,072 KB
testcase_39 AC 56 ms
66,816 KB
testcase_40 AC 58 ms
66,944 KB
testcase_41 AC 57 ms
67,072 KB
testcase_42 AC 56 ms
67,328 KB
testcase_43 AC 57 ms
67,456 KB
testcase_44 AC 59 ms
67,328 KB
testcase_45 AC 56 ms
67,456 KB
testcase_46 AC 57 ms
67,328 KB
testcase_47 AC 56 ms
66,688 KB
testcase_48 AC 47 ms
63,360 KB
testcase_49 AC 52 ms
63,232 KB
testcase_50 AC 49 ms
63,744 KB
testcase_51 AC 49 ms
62,976 KB
testcase_52 AC 48 ms
63,232 KB
testcase_53 AC 48 ms
63,104 KB
testcase_54 AC 48 ms
63,616 KB
testcase_55 AC 49 ms
62,976 KB
testcase_56 AC 50 ms
63,104 KB
testcase_57 AC 49 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, w = mi()
dp = [[-inf] * (w + 1) for _ in range(n + 1)]
dp[0][0] = 0

for i in range(n):
    u, v = mi()
    for j in range(w + 1):
        if j + u <= w:
            dp[i + 1][j + u] = max(dp[i][j] + v, dp[i + 1][j + u])
        dp[i + 1][j] = max(dp[i][j], dp[i + 1][j])

for i in range(1, w + 1):
    dp[n][i] = max(dp[n][i], dp[n][i - 1])
ans = []
for i in range(1, w + 1):
    ans.append(dp[n][w] - dp[n][w - i] + 1)

for v in ans:
    print(v)
0