結果

問題 No.626 Randomized 01 Knapsack
ユーザー RyutoRyuto
提出日時 2017-12-20 00:15:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 445 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-05-09 13:11:24
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,832 KB
testcase_01 AC 49 ms
58,624 KB
testcase_02 AC 96 ms
75,520 KB
testcase_03 AC 81 ms
74,624 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

indat = [int(x) for x in input().split()]
values = list()
weights = list()
for i in range(indat[0]):
    tmp = [int(x) for x in input().split()]
    values.append(tmp[0])
    weights.append(tmp[1])

def rec(i,j):
    if i == len(weights):
        res = 0
    elif j < weights[i]:
        res = rec(i+1,j)
    else:
        res = max(rec(i+1, j), rec(i+1, j-weights[i]) + values[i])
    return res

print(rec(0, indat[1]))
0