結果

問題 No.1947 質より種類数
ユーザー titan23titan23
提出日時 2022-07-03 02:25:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 582 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 278,144 KB
最終ジャッジ日時 2024-05-06 01:26:03
合計ジャッジ時間 21,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,472 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 208 ms
68,224 KB
testcase_05 AC 202 ms
67,584 KB
testcase_06 AC 188 ms
70,884 KB
testcase_07 AC 218 ms
67,712 KB
testcase_08 AC 253 ms
68,096 KB
testcase_09 AC 266 ms
73,228 KB
testcase_10 AC 159 ms
71,680 KB
testcase_11 AC 384 ms
86,120 KB
testcase_12 AC 271 ms
82,332 KB
testcase_13 AC 150 ms
70,528 KB
testcase_14 AC 657 ms
131,224 KB
testcase_15 AC 362 ms
104,020 KB
testcase_16 AC 929 ms
156,184 KB
testcase_17 AC 1,206 ms
178,560 KB
testcase_18 TLE -
testcase_19 AC 1,819 ms
238,720 KB
testcase_20 AC 1,978 ms
198,400 KB
testcase_21 TLE -
testcase_22 AC 158 ms
83,840 KB
testcase_23 AC 740 ms
133,652 KB
testcase_24 AC 492 ms
68,480 KB
testcase_25 AC 477 ms
67,456 KB
testcase_26 AC 259 ms
65,408 KB
testcase_27 AC 318 ms
66,816 KB
testcase_28 AC 511 ms
72,320 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = [[-1]*(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):
    if dp[i][j] == -1:
      continue

    dp[i+1][j] = max(dp[i+1][j], dp[i][j])

    if j+v < V+1:
      dp[i+1][j+v] = max(dp[i+1][j+v], dp[i][j]+w+C)
    cnt = 2
    while j+v*cnt < V+1:
      dp[i+1][j+v*cnt] = max(dp[i+1][j+v*cnt], dp[i][j]+w*cnt+C)
      cnt += 1

print(max(dp[n]))
0