結果

問題 No.1947 質より種類数
ユーザー titan23titan23
提出日時 2022-07-03 03:18:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,141 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 273,664 KB
最終ジャッジ日時 2024-11-28 08:08:15
合計ジャッジ時間 12,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 79 ms
67,456 KB
testcase_05 AC 75 ms
67,584 KB
testcase_06 AC 82 ms
70,400 KB
testcase_07 AC 74 ms
67,584 KB
testcase_08 AC 73 ms
67,072 KB
testcase_09 AC 96 ms
72,064 KB
testcase_10 AC 87 ms
70,784 KB
testcase_11 AC 131 ms
85,504 KB
testcase_12 AC 121 ms
82,048 KB
testcase_13 AC 82 ms
69,760 KB
testcase_14 AC 354 ms
131,328 KB
testcase_15 AC 199 ms
104,064 KB
testcase_16 AC 541 ms
156,544 KB
testcase_17 AC 499 ms
178,560 KB
testcase_18 AC 1,141 ms
262,016 KB
testcase_19 AC 855 ms
238,720 KB
testcase_20 AC 562 ms
197,888 KB
testcase_21 AC 901 ms
220,032 KB
testcase_22 AC 116 ms
83,328 KB
testcase_23 AC 391 ms
133,632 KB
testcase_24 AC 74 ms
67,072 KB
testcase_25 AC 72 ms
66,304 KB
testcase_26 AC 68 ms
65,152 KB
testcase_27 AC 70 ms
65,792 KB
testcase_28 AC 79 ms
69,120 KB
testcase_29 AC 943 ms
273,664 KB
testcase_30 AC 846 ms
273,152 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 42 ms
52,096 KB
testcase_33 AC 57 ms
62,464 KB
testcase_34 AC 815 ms
273,664 KB
testcase_35 AC 512 ms
273,152 KB
testcase_36 AC 840 ms
272,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

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

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

for i in range(n):
  v, w = vw[i]
  for j in range(V+1):
    dp[i+1][j] = max(dp[i+1][j], dp[i][j])

    if j-v >= 0:
      dp[i+1][j] = max(dp[i+1][j], dp[i][j-v]+w+C)
  for j in range(V+1):
    if j-v >= 0:
      dp[i+1][j] = max(dp[i+1][j], dp[i+1][j-v]+w)

print(max(dp[n]))
0