結果

問題 No.617 Nafmo、買い出しに行く
ユーザー ああいいああいい
提出日時 2021-12-29 18:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 372,556 KB
最終ジャッジ日時 2024-10-04 05:40:32
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
80,520 KB
testcase_01 AC 39 ms
58,704 KB
testcase_02 AC 70 ms
91,016 KB
testcase_03 AC 117 ms
144,576 KB
testcase_04 AC 49 ms
64,708 KB
testcase_05 AC 172 ms
210,008 KB
testcase_06 AC 332 ms
370,868 KB
testcase_07 AC 336 ms
372,556 KB
testcase_08 AC 36 ms
52,684 KB
testcase_09 AC 36 ms
52,308 KB
testcase_10 AC 243 ms
281,444 KB
testcase_11 AC 295 ms
328,572 KB
testcase_12 AC 182 ms
203,592 KB
testcase_13 AC 134 ms
146,444 KB
testcase_14 AC 154 ms
173,968 KB
testcase_15 AC 40 ms
61,036 KB
testcase_16 AC 40 ms
60,408 KB
testcase_17 AC 34 ms
52,336 KB
testcase_18 AC 34 ms
52,928 KB
testcase_19 AC 35 ms
51,964 KB
testcase_20 AC 33 ms
52,144 KB
testcase_21 AC 33 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * (K+1) for _ in range(N)]
dp[0][0] = 1
if A[0] <= K:
    dp[0][A[0]] = 1
for i in range(N-1):
    for j in range(K + 1):
        if dp[i][j]:
            dp[i+1][j] = 1
            if j + A[i+1] <= K:
                dp[i+1][j + A[i+1]] = 1
ans = K
while dp[N-1][ans] == 0:
    ans -= 1
print(ans)
0