結果

問題 No.2232 Miser's Gift
ユーザー U SU S
提出日時 2023-03-04 00:13:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,137 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 156,232 KB
最終ジャッジ日時 2024-09-18 00:42:06
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,928 KB
testcase_01 AC 45 ms
60,928 KB
testcase_02 AC 47 ms
62,648 KB
testcase_03 AC 172 ms
155,904 KB
testcase_04 AC 217 ms
156,000 KB
testcase_05 AC 78 ms
77,184 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 74 ms
78,420 KB
testcase_08 AC 194 ms
156,032 KB
testcase_09 AC 193 ms
155,964 KB
testcase_10 AC 188 ms
155,824 KB
testcase_11 AC 185 ms
155,820 KB
testcase_12 AC 195 ms
156,032 KB
testcase_13 AC 170 ms
156,232 KB
testcase_14 AC 176 ms
155,648 KB
testcase_15 AC 171 ms
156,160 KB
testcase_16 AC 171 ms
156,016 KB
testcase_17 AC 183 ms
155,988 KB
testcase_18 AC 178 ms
155,744 KB
testcase_19 AC 178 ms
156,032 KB
testcase_20 AC 167 ms
155,648 KB
testcase_21 AC 169 ms
155,704 KB
testcase_22 AC 180 ms
155,776 KB
testcase_23 AC 213 ms
156,032 KB
testcase_24 AC 208 ms
155,700 KB
testcase_25 AC 214 ms
156,092 KB
testcase_26 AC 214 ms
155,868 KB
testcase_27 AC 208 ms
155,904 KB
testcase_28 AC 211 ms
155,944 KB
testcase_29 AC 195 ms
155,972 KB
testcase_30 AC 203 ms
155,936 KB
testcase_31 AC 202 ms
155,684 KB
testcase_32 AC 205 ms
156,096 KB
testcase_33 AC 176 ms
156,032 KB
testcase_34 AC 176 ms
156,228 KB
testcase_35 AC 193 ms
156,032 KB
testcase_36 AC 181 ms
156,160 KB
testcase_37 AC 171 ms
155,808 KB
testcase_38 AC 56 ms
67,968 KB
testcase_39 AC 55 ms
68,096 KB
testcase_40 AC 56 ms
67,968 KB
testcase_41 AC 56 ms
67,712 KB
testcase_42 AC 55 ms
68,224 KB
testcase_43 AC 57 ms
68,608 KB
testcase_44 AC 60 ms
67,968 KB
testcase_45 AC 63 ms
68,096 KB
testcase_46 AC 64 ms
67,908 KB
testcase_47 AC 56 ms
68,224 KB
testcase_48 AC 53 ms
65,024 KB
testcase_49 AC 57 ms
65,024 KB
testcase_50 AC 56 ms
65,536 KB
testcase_51 AC 55 ms
65,024 KB
testcase_52 AC 54 ms
65,664 KB
testcase_53 AC 52 ms
65,152 KB
testcase_54 AC 53 ms
65,408 KB
testcase_55 AC 52 ms
65,536 KB
testcase_56 AC 52 ms
65,152 KB
testcase_57 AC 55 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
# sys.setrecursionlimit(10**7)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
def lm1(LIST): return list(map(lambda x:x-1, LIST))
def mps(A):return [tuple(map(int, input().split())) for _ in range(A)]
def stoi(LIST):return list(map(int,LIST))
def itos(LIST):return list(map(str,LIST))
def atoi(LIST): return [ord(i)-ord("a") for i in LIST]
def Atoi(LIST): return [ord(i)-ord("A") for i in LIST]
def bitA(X,A):return X & 1<<A == 1<<A
import math
import bisect
import heapq
import time
from copy import copy as cc
from copy import deepcopy as dc
from itertools import accumulate, product
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = (1<<63)-1
mod = int(1e9+7)

n,w = mp()
prev = [0]*(w+1)
for i in range(n):
    now = cc(prev)
    W,V = mp()
    for j in range(w+1):
        if j + W <= w:
            now[j+W] = max(now[j+W], prev[j]+V)
    prev = now
for i in range(w-1,-1,-1):
    print(prev[-1]-prev[i]+1)
0