結果

問題 No.1947 質より種類数
ユーザー nohakai3nohakai3
提出日時 2022-09-01 19:02:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 254,116 KB
最終ジャッジ日時 2024-11-14 10:06:29
合計ジャッジ時間 56,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,444 KB
testcase_01 AC 30 ms
79,744 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 317 ms
20,772 KB
testcase_05 AC 216 ms
107,264 KB
testcase_06 AC 230 ms
19,876 KB
testcase_07 AC 266 ms
128,512 KB
testcase_08 AC 320 ms
20,256 KB
testcase_09 AC 1,228 ms
224,256 KB
testcase_10 AC 877 ms
27,684 KB
testcase_11 TLE -
testcase_12 AC 1,945 ms
33,444 KB
testcase_13 AC 699 ms
150,784 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 429 ms
19,620 KB
testcase_25 AC 327 ms
220,544 KB
testcase_26 AC 163 ms
19,236 KB
testcase_27 AC 240 ms
12,288 KB
testcase_28 AC 315 ms
13,568 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 53 ms
11,136 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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