結果

問題 No.617 Nafmo、買い出しに行く
ユーザー RyutoRyuto
提出日時 2017-12-18 20:20:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-05-09 11:46:56
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 RE -
testcase_02 AC 49 ms
62,336 KB
testcase_03 AC 60 ms
72,576 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 60 ms
74,240 KB
testcase_06 AC 72 ms
74,496 KB
testcase_07 AC 73 ms
75,104 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 73 ms
75,392 KB
testcase_11 AC 70 ms
74,240 KB
testcase_12 AC 80 ms
74,624 KB
testcase_13 AC 101 ms
74,880 KB
testcase_14 AC 81 ms
74,752 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 35 ms
52,352 KB
testcase_20 AC 34 ms
51,200 KB
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

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 == indat[0]:
        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