結果

問題 No.1947 質より種類数
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-20 23:45:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-20 10:12:30
合計ジャッジ時間 6,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 54 ms
64,128 KB
testcase_05 AC 53 ms
63,616 KB
testcase_06 AC 57 ms
65,152 KB
testcase_07 AC 54 ms
64,000 KB
testcase_08 AC 59 ms
64,000 KB
testcase_09 AC 64 ms
67,456 KB
testcase_10 AC 60 ms
66,176 KB
testcase_11 AC 79 ms
76,160 KB
testcase_12 AC 71 ms
70,528 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 188 ms
76,160 KB
testcase_15 AC 117 ms
76,416 KB
testcase_16 AC 247 ms
76,672 KB
testcase_17 AC 246 ms
76,672 KB
testcase_18 AC 479 ms
76,288 KB
testcase_19 AC 442 ms
76,416 KB
testcase_20 AC 202 ms
76,288 KB
testcase_21 AC 399 ms
76,288 KB
testcase_22 AC 67 ms
72,448 KB
testcase_23 AC 173 ms
76,524 KB
testcase_24 AC 53 ms
64,000 KB
testcase_25 AC 54 ms
63,232 KB
testcase_26 AC 53 ms
62,848 KB
testcase_27 AC 54 ms
63,104 KB
testcase_28 AC 57 ms
64,896 KB
testcase_29 AC 350 ms
76,288 KB
testcase_30 AC 303 ms
76,416 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 37 ms
51,584 KB
testcase_33 AC 47 ms
60,288 KB
testcase_34 AC 311 ms
76,416 KB
testcase_35 AC 140 ms
76,928 KB
testcase_36 AC 297 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10 ** 10

N, V, C = map(int, input().split())
dp = [-inf] * (V + 1)
dp[0] = 0
for _ in range(N):
    v, w = map(int, input().split())
    ndp = [-inf] * (V + 1)
    for i in range(v, V + 1):
        ndp[i] = max(dp[i-v] + w, ndp[i-v] + w)
    for i in range(V+1):
        dp[i] = max(dp[i], ndp[i] + C)

print(max(dp))
0