結果

問題 No.1947 質より種類数
ユーザー siganaisiganai
提出日時 2022-05-20 22:44:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-09-20 09:03:37
合計ジャッジ時間 6,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,872 KB
testcase_01 AC 58 ms
63,872 KB
testcase_02 AC 64 ms
63,616 KB
testcase_03 AC 57 ms
63,616 KB
testcase_04 AC 79 ms
69,632 KB
testcase_05 AC 72 ms
69,632 KB
testcase_06 AC 78 ms
70,784 KB
testcase_07 AC 73 ms
69,760 KB
testcase_08 AC 73 ms
69,376 KB
testcase_09 AC 83 ms
70,400 KB
testcase_10 AC 77 ms
69,760 KB
testcase_11 AC 92 ms
72,064 KB
testcase_12 AC 85 ms
70,272 KB
testcase_13 AC 74 ms
69,888 KB
testcase_14 AC 182 ms
72,576 KB
testcase_15 AC 124 ms
72,192 KB
testcase_16 AC 218 ms
73,088 KB
testcase_17 AC 170 ms
73,216 KB
testcase_18 AC 412 ms
74,240 KB
testcase_19 AC 289 ms
73,984 KB
testcase_20 AC 203 ms
73,728 KB
testcase_21 AC 339 ms
73,984 KB
testcase_22 AC 90 ms
71,424 KB
testcase_23 AC 166 ms
73,088 KB
testcase_24 AC 73 ms
69,504 KB
testcase_25 AC 71 ms
69,504 KB
testcase_26 AC 72 ms
69,248 KB
testcase_27 AC 74 ms
69,248 KB
testcase_28 AC 76 ms
70,528 KB
testcase_29 AC 323 ms
73,088 KB
testcase_30 AC 311 ms
72,704 KB
testcase_31 AC 60 ms
63,872 KB
testcase_32 AC 59 ms
63,744 KB
testcase_33 AC 67 ms
67,584 KB
testcase_34 AC 81 ms
72,704 KB
testcase_35 AC 71 ms
70,144 KB
testcase_36 AC 293 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
n,V,c=map(int,input().split())
INF = 1 << 31
dp = [-INF] * (V+1)
dp[0] = 0
for i in range(n):
    v,w=map(int,input().split())
    for j in range(v,V+1):
        dp[j] = max(dp[j],dp[j-v]+w)
    for j in range(v,V+1)[::-1]:
        dp[j] = max(dp[j],dp[j-v]+w+c)
print(max(dp))
0