結果

問題 No.617 Nafmo、買い出しに行く
ユーザー iad_2889iad_2889
提出日時 2019-05-16 13:47:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 388,616 KB
最終ジャッジ日時 2024-09-17 05:30:06
合計ジャッジ時間 5,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
86,316 KB
testcase_01 AC 41 ms
60,508 KB
testcase_02 AC 108 ms
96,340 KB
testcase_03 AC 196 ms
151,764 KB
testcase_04 AC 58 ms
69,144 KB
testcase_05 AC 331 ms
220,880 KB
testcase_06 AC 769 ms
388,616 KB
testcase_07 AC 612 ms
388,408 KB
testcase_08 AC 34 ms
52,816 KB
testcase_09 AC 33 ms
53,148 KB
testcase_10 AC 468 ms
294,100 KB
testcase_11 AC 566 ms
343,676 KB
testcase_12 AC 327 ms
213,700 KB
testcase_13 AC 201 ms
152,376 KB
testcase_14 AC 255 ms
180,756 KB
testcase_15 AC 42 ms
60,476 KB
testcase_16 AC 44 ms
62,572 KB
testcase_17 AC 33 ms
52,152 KB
testcase_18 AC 33 ms
52,704 KB
testcase_19 AC 33 ms
52,004 KB
testcase_20 AC 38 ms
52,464 KB
testcase_21 AC 36 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
products = [int(input()) for x in range(N)]

products.sort()
dp = [[0 for x in range(K + 1)] for y in range(N + 1)]
for i,p in enumerate(products):
    before = dp[i]
    for w in range(K + 1):
        if w < p:
            dp[i+1][w] = before[w]
        else:
            dp[i+1][w] = max(before[w],before[w - p] + p)

print(dp[-1][-1])
0