結果

問題 No.1947 質より種類数
ユーザー chineristACchineristAC
提出日時 2022-05-20 21:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-09-20 07:39:49
合計ジャッジ時間 6,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,936 KB
testcase_01 AC 47 ms
55,552 KB
testcase_02 AC 46 ms
55,680 KB
testcase_03 AC 45 ms
55,552 KB
testcase_04 AC 62 ms
69,888 KB
testcase_05 AC 61 ms
69,632 KB
testcase_06 AC 64 ms
71,168 KB
testcase_07 AC 62 ms
70,400 KB
testcase_08 AC 64 ms
70,272 KB
testcase_09 AC 78 ms
73,472 KB
testcase_10 AC 71 ms
71,552 KB
testcase_11 AC 92 ms
77,696 KB
testcase_12 AC 84 ms
76,672 KB
testcase_13 AC 66 ms
71,168 KB
testcase_14 AC 201 ms
77,412 KB
testcase_15 AC 112 ms
77,568 KB
testcase_16 AC 256 ms
78,000 KB
testcase_17 AC 214 ms
77,824 KB
testcase_18 AC 505 ms
78,160 KB
testcase_19 AC 440 ms
77,824 KB
testcase_20 AC 235 ms
77,824 KB
testcase_21 AC 440 ms
78,188 KB
testcase_22 AC 83 ms
77,276 KB
testcase_23 AC 203 ms
77,552 KB
testcase_24 AC 61 ms
69,760 KB
testcase_25 AC 62 ms
69,120 KB
testcase_26 AC 58 ms
68,096 KB
testcase_27 AC 61 ms
68,224 KB
testcase_28 AC 64 ms
71,416 KB
testcase_29 AC 368 ms
78,176 KB
testcase_30 AC 300 ms
78,336 KB
testcase_31 AC 44 ms
55,552 KB
testcase_32 AC 42 ms
55,680 KB
testcase_33 AC 51 ms
64,512 KB
testcase_34 AC 347 ms
78,016 KB
testcase_35 AC 165 ms
77,900 KB
testcase_36 AC 305 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

INF = 10**17

N,V,C = mi()
dp = [-INF] * (V+1)
dp[0] = 0

for _ in range(N):
    v,w = mi()
    ndp = [-INF] * (V+1)
    for i in range(V+1-v):
        ndp[i+v] = dp[i]+C+w
    for i in range(V+1):
        ndp[i] = max(dp[i],ndp[i])
        if v <= i:
            ndp[i] = max(ndp[i],ndp[i-v]+w)
    dp = ndp

print(max(dp))
    
0