結果

問題 No.5 数字のブロック
ユーザー deepjugglingdeepjuggling
提出日時 2023-03-15 15:03:30
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 406 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 848,532 KB
最終ジャッジ日時 2024-09-18 08:45:19
合計ジャッジ時間 20,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,084 KB
testcase_01 AC 39 ms
58,056 KB
testcase_02 AC 35 ms
52,504 KB
testcase_03 AC 1,582 ms
440,780 KB
testcase_04 AC 82 ms
81,140 KB
testcase_05 MLE -
testcase_06 AC 781 ms
226,292 KB
testcase_07 AC 1,053 ms
316,456 KB
testcase_08 AC 610 ms
219,100 KB
testcase_09 AC 246 ms
128,728 KB
testcase_10 AC 924 ms
303,780 KB
testcase_11 AC 295 ms
134,968 KB
testcase_12 AC 1,532 ms
437,500 KB
testcase_13 AC 939 ms
305,708 KB
testcase_14 AC 73 ms
74,352 KB
testcase_15 AC 49 ms
65,040 KB
testcase_16 AC 1,647 ms
466,872 KB
testcase_17 MLE -
testcase_18 AC 1,584 ms
405,992 KB
testcase_19 MLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
n = int(input())
dp = [[-1 for i in range(l+1)] for j in range(n+1)]

a = list(map(int,input().split()))
dp[0][0] = 0
for i in range(n):
    for j in range(l+1):
        dp[i+1][j] = dp[i][j]
    for j in range(l+1):
        if j+a[i] <= l:
            if dp[i][j] >= 0:
                dp[i+1][j+a[i]] = max(dp[i+1][j+a[i]],dp[i][j]+1)
ma = 0
for i in dp[-1]:
    ma = max(ma,i)
print(ma)
0