結果

問題 No.5 数字のブロック
ユーザー HydruHydru
提出日時 2023-01-15 14:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-06-08 17:54:51
合計ジャッジ時間 7,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 424 ms
63,616 KB
testcase_04 AC 50 ms
62,464 KB
testcase_05 AC 439 ms
63,872 KB
testcase_06 AC 190 ms
63,232 KB
testcase_07 AC 262 ms
63,488 KB
testcase_08 AC 177 ms
63,360 KB
testcase_09 AC 94 ms
62,464 KB
testcase_10 AC 257 ms
63,616 KB
testcase_11 AC 101 ms
62,336 KB
testcase_12 AC 362 ms
63,616 KB
testcase_13 AC 253 ms
63,872 KB
testcase_14 AC 53 ms
60,928 KB
testcase_15 AC 46 ms
60,160 KB
testcase_16 AC 394 ms
64,640 KB
testcase_17 AC 605 ms
64,896 KB
testcase_18 AC 340 ms
64,000 KB
testcase_19 AC 748 ms
64,256 KB
testcase_20 AC 41 ms
57,728 KB
testcase_21 AC 37 ms
51,584 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 45 ms
60,800 KB
testcase_25 AC 73 ms
61,568 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 41 ms
56,960 KB
testcase_28 AC 40 ms
56,448 KB
testcase_29 AC 50 ms
62,336 KB
testcase_30 AC 67 ms
62,080 KB
testcase_31 AC 39 ms
56,448 KB
testcase_32 AC 40 ms
56,960 KB
testcase_33 AC 37 ms
51,456 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