結果

問題 No.1947 質より種類数
ユーザー first_vilfirst_vil
提出日時 2022-05-20 22:05:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 77,204 KB
最終ジャッジ日時 2024-09-20 08:15:45
合計ジャッジ時間 6,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,912 KB
testcase_01 AC 38 ms
53,812 KB
testcase_02 AC 38 ms
52,088 KB
testcase_03 AC 39 ms
52,524 KB
testcase_04 AC 65 ms
72,400 KB
testcase_05 AC 58 ms
70,148 KB
testcase_06 AC 63 ms
73,524 KB
testcase_07 AC 59 ms
70,184 KB
testcase_08 AC 63 ms
72,300 KB
testcase_09 AC 69 ms
73,948 KB
testcase_10 AC 66 ms
73,608 KB
testcase_11 AC 85 ms
76,464 KB
testcase_12 AC 79 ms
75,944 KB
testcase_13 AC 64 ms
72,656 KB
testcase_14 AC 180 ms
76,304 KB
testcase_15 AC 125 ms
76,508 KB
testcase_16 AC 231 ms
76,592 KB
testcase_17 AC 180 ms
76,464 KB
testcase_18 AC 447 ms
76,532 KB
testcase_19 AC 243 ms
76,960 KB
testcase_20 AC 200 ms
76,700 KB
testcase_21 AC 362 ms
77,180 KB
testcase_22 AC 78 ms
76,136 KB
testcase_23 AC 197 ms
76,240 KB
testcase_24 AC 59 ms
71,084 KB
testcase_25 AC 61 ms
70,564 KB
testcase_26 AC 59 ms
69,788 KB
testcase_27 AC 59 ms
69,960 KB
testcase_28 AC 65 ms
73,796 KB
testcase_29 AC 350 ms
76,896 KB
testcase_30 AC 262 ms
77,204 KB
testcase_31 AC 38 ms
52,816 KB
testcase_32 AC 38 ms
53,496 KB
testcase_33 AC 49 ms
63,924 KB
testcase_34 AC 354 ms
77,032 KB
testcase_35 AC 181 ms
76,636 KB
testcase_36 AC 257 ms
76,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353


def chmax(arr, i, v):
    if arr[i] < v:
        arr[i] = v


n, v, c = mi()
dp = [0] * (v + 1)
for _ in range(n):
    cost, value = mi()
    nxt = dp[:]
    for i in range(v):
        if i + cost <= v:
            chmax(nxt, i + cost, dp[i] + value + c)
            chmax(nxt, i + cost, nxt[i] + value)
        chmax(nxt, i, dp[i])
    dp = nxt
print(max(dp))
0