結果

問題 No.1947 質より種類数
ユーザー terasaterasa
提出日時 2022-05-22 11:06:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-20 12:27:47
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
65,792 KB
testcase_01 AC 67 ms
65,920 KB
testcase_02 AC 63 ms
66,304 KB
testcase_03 AC 64 ms
66,048 KB
testcase_04 AC 79 ms
72,576 KB
testcase_05 AC 79 ms
72,576 KB
testcase_06 AC 81 ms
73,472 KB
testcase_07 AC 79 ms
72,960 KB
testcase_08 AC 80 ms
72,704 KB
testcase_09 AC 85 ms
73,216 KB
testcase_10 AC 83 ms
72,832 KB
testcase_11 AC 93 ms
74,112 KB
testcase_12 AC 87 ms
73,088 KB
testcase_13 AC 80 ms
72,704 KB
testcase_14 AC 170 ms
78,592 KB
testcase_15 AC 124 ms
75,648 KB
testcase_16 AC 209 ms
78,720 KB
testcase_17 AC 243 ms
78,848 KB
testcase_18 AC 350 ms
79,488 KB
testcase_19 AC 319 ms
79,488 KB
testcase_20 AC 253 ms
79,164 KB
testcase_21 AC 281 ms
79,388 KB
testcase_22 AC 84 ms
74,692 KB
testcase_23 AC 173 ms
79,000 KB
testcase_24 AC 72 ms
73,996 KB
testcase_25 AC 71 ms
73,500 KB
testcase_26 AC 69 ms
72,676 KB
testcase_27 AC 68 ms
73,224 KB
testcase_28 AC 71 ms
73,116 KB
testcase_29 AC 305 ms
79,296 KB
testcase_30 AC 332 ms
79,180 KB
testcase_31 AC 64 ms
65,792 KB
testcase_32 AC 62 ms
66,176 KB
testcase_33 AC 73 ms
70,400 KB
testcase_34 AC 133 ms
79,032 KB
testcase_35 AC 122 ms
79,104 KB
testcase_36 AC 345 ms
79,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


N, Pmax, C = map(int, input().split())
P = [tuple(map(int, input().split())) for _ in range(N)]

dp = [0 for _ in range(Pmax + 1)]
for i in range(N):
    price, value = P[i]
    value += C
    for j in range(Pmax + 1)[::-1]:
        if j - price < 0:
            break
        dp[j] = max(dp[j], dp[j - price] + value)
for i in range(N):
    price, value = P[i]
    for j in range(Pmax + 1):
        if j - price < 0:
            continue
        dp[j] = max(dp[j], dp[j - price] + value)
print(max(dp))
0