結果

問題 No.1947 質より種類数
ユーザー pitPpitP
提出日時 2022-05-20 22:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 273,408 KB
最終ジャッジ日時 2024-09-20 08:52:45
合計ジャッジ時間 8,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 60 ms
66,816 KB
testcase_05 AC 55 ms
65,024 KB
testcase_06 AC 63 ms
66,304 KB
testcase_07 AC 59 ms
65,664 KB
testcase_08 AC 62 ms
66,688 KB
testcase_09 AC 71 ms
69,376 KB
testcase_10 AC 67 ms
67,456 KB
testcase_11 AC 100 ms
85,760 KB
testcase_12 AC 78 ms
72,320 KB
testcase_13 AC 65 ms
67,072 KB
testcase_14 AC 276 ms
128,376 KB
testcase_15 AC 144 ms
103,992 KB
testcase_16 AC 371 ms
150,620 KB
testcase_17 AC 328 ms
173,184 KB
testcase_18 AC 741 ms
262,784 KB
testcase_19 AC 667 ms
238,944 KB
testcase_20 AC 386 ms
195,456 KB
testcase_21 AC 579 ms
217,600 KB
testcase_22 AC 75 ms
74,624 KB
testcase_23 AC 298 ms
128,096 KB
testcase_24 AC 56 ms
65,408 KB
testcase_25 AC 56 ms
65,152 KB
testcase_26 AC 54 ms
64,768 KB
testcase_27 AC 53 ms
64,128 KB
testcase_28 AC 60 ms
66,944 KB
testcase_29 AC 552 ms
273,152 KB
testcase_30 AC 564 ms
273,408 KB
testcase_31 AC 38 ms
51,584 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 46 ms
60,416 KB
testcase_34 AC 495 ms
273,408 KB
testcase_35 AC 448 ms
273,260 KB
testcase_36 AC 565 ms
273,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int,input().split())
g = [list(map(int,input().split())) for _ in range(N)]

dp = [[0] * (V+1) for _ in range(N+1)]

for i in range(N):
    vi,wi = g[i]
    for j in range(V+1):
        if j-vi >= 0:
            dp[i+1][j] = max(dp[i][j-vi] + wi + C , dp[i][j] , dp[i+1][j-vi] + wi)
        else:
            dp[i+1][j] = dp[i][j]

print(max(dp[N]))
0