結果

問題 No.617 Nafmo、買い出しに行く
ユーザー RyutoRyuto
提出日時 2017-12-18 20:24:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-05-09 11:47:24
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
51,968 KB
testcase_01 AC 49 ms
51,456 KB
testcase_02 AC 70 ms
61,952 KB
testcase_03 AC 90 ms
72,960 KB
testcase_04 AC 49 ms
51,840 KB
testcase_05 AC 94 ms
75,136 KB
testcase_06 AC 111 ms
74,880 KB
testcase_07 AC 110 ms
74,880 KB
testcase_08 AC 48 ms
51,840 KB
testcase_09 AC 48 ms
51,456 KB
testcase_10 AC 110 ms
74,496 KB
testcase_11 AC 107 ms
74,880 KB
testcase_12 AC 120 ms
75,264 KB
testcase_13 AC 147 ms
74,624 KB
testcase_14 AC 122 ms
74,880 KB
testcase_15 AC 50 ms
51,712 KB
testcase_16 AC 49 ms
51,840 KB
testcase_17 AC 50 ms
51,840 KB
testcase_18 AC 49 ms
51,712 KB
testcase_19 AC 48 ms
51,072 KB
testcase_20 AC 49 ms
51,072 KB
testcase_21 AC 49 ms
51,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

indat = [int(x) for x in input().split()]
weights = list()
for i in range(indat[0]):
    x = int(input())
    if x < indat[1]:
        weights.append(x)
    elif x == indat[1]:
        print(x)
        exit()

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]) + weights[i])
    return res

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