結果

問題 No.617 Nafmo、買い出しに行く
ユーザー iad_2889iad_2889
提出日時 2019-05-16 12:21:16
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 11,752 KB
実行使用メモリ 28,048 KB
最終ジャッジ日時 2023-10-17 06:50:40
合計ジャッジ時間 9,331 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
10,148 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
products = [int(input()) for x in range(N)]
dp = [0] * (K + 1)
for i in range(1,K + 1):
    for product in products:
        if product <= i:
            dp[i] = max(dp[i - 1],dp[i - product] + product)
print(dp[K])
0