結果

問題 No.5 数字のブロック
ユーザー HydruHydru
提出日時 2023-01-15 14:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-12-28 07:02:27
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 381 ms
63,872 KB
testcase_04 AC 52 ms
62,720 KB
testcase_05 AC 459 ms
64,640 KB
testcase_06 AC 200 ms
62,976 KB
testcase_07 AC 267 ms
63,104 KB
testcase_08 AC 183 ms
62,976 KB
testcase_09 AC 94 ms
62,336 KB
testcase_10 AC 259 ms
63,744 KB
testcase_11 AC 101 ms
62,848 KB
testcase_12 AC 368 ms
63,616 KB
testcase_13 AC 265 ms
63,744 KB
testcase_14 AC 52 ms
60,288 KB
testcase_15 AC 47 ms
60,160 KB
testcase_16 AC 400 ms
63,872 KB
testcase_17 AC 626 ms
64,256 KB
testcase_18 AC 347 ms
64,512 KB
testcase_19 AC 764 ms
64,768 KB
testcase_20 AC 39 ms
57,856 KB
testcase_21 AC 39 ms
51,200 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 39 ms
51,584 KB
testcase_24 AC 50 ms
61,056 KB
testcase_25 AC 76 ms
61,440 KB
testcase_26 AC 37 ms
51,584 KB
testcase_27 AC 39 ms
56,960 KB
testcase_28 AC 42 ms
56,448 KB
testcase_29 AC 49 ms
62,464 KB
testcase_30 AC 66 ms
62,336 KB
testcase_31 AC 40 ms
56,960 KB
testcase_32 AC 39 ms
56,832 KB
testcase_33 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=int(input())
n=int(input())
W=list(map(int,input().split()))

DP=[-1]*(l+1)
DP[0]=0
DP[W[0]]=1

for i in range(1,n):
    for j in range(l-W[i],-1,-1):
        if DP[j]==-1:
            continue
        DP[j+W[i]]=max(DP[j+W[i]],DP[j]+1)

print(max(DP))
0