結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 63 ms
68,224 KB
testcase_05 AC 59 ms
67,328 KB
testcase_06 AC 65 ms
70,784 KB
testcase_07 AC 60 ms
67,328 KB
testcase_08 AC 63 ms
67,584 KB
testcase_09 AC 78 ms
72,448 KB
testcase_10 AC 71 ms
71,296 KB
testcase_11 AC 108 ms
85,756 KB
testcase_12 AC 99 ms
82,560 KB
testcase_13 AC 69 ms
70,272 KB
testcase_14 AC 325 ms
131,508 KB
testcase_15 AC 177 ms
103,896 KB
testcase_16 AC 494 ms
156,672 KB
testcase_17 AC 458 ms
179,200 KB
testcase_18 AC 1,066 ms
262,628 KB
testcase_19 AC 805 ms
238,848 KB
testcase_20 AC 526 ms
198,144 KB
testcase_21 AC 852 ms
220,156 KB
testcase_22 AC 96 ms
83,840 KB
testcase_23 AC 358 ms
134,296 KB
testcase_24 AC 61 ms
68,096 KB
testcase_25 AC 59 ms
66,432 KB
testcase_26 AC 55 ms
65,408 KB
testcase_27 AC 56 ms
65,920 KB
testcase_28 AC 62 ms
69,120 KB
testcase_29 AC 880 ms
273,352 KB
testcase_30 AC 784 ms
273,408 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 34 ms
52,096 KB
testcase_33 AC 46 ms
62,848 KB
testcase_34 AC 750 ms
273,536 KB
testcase_35 AC 476 ms
273,416 KB
testcase_36 AC 791 ms
273,712 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