結果

問題 No.5 数字のブロック
ユーザー kaminomisosirukaminomisosiru
提出日時 2018-02-04 14:45:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 472 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 820,160 KB
最終ジャッジ日時 2024-06-30 03:56:37
合計ジャッジ時間 28,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
43,940 KB
testcase_01 AC 504 ms
44,332 KB
testcase_02 AC 511 ms
43,820 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 1,179 ms
52,344 KB
testcase_15 AC 561 ms
44,452 KB
testcase_16 RE -
testcase_17 MLE -
testcase_18 RE -
testcase_19 MLE -
testcase_20 AC 553 ms
43,936 KB
testcase_21 AC 493 ms
44,452 KB
testcase_22 AC 487 ms
44,204 KB
testcase_23 AC 507 ms
44,200 KB
testcase_24 AC 652 ms
44,584 KB
testcase_25 AC 4,928 ms
78,688 KB
testcase_26 AC 497 ms
43,936 KB
testcase_27 AC 494 ms
44,064 KB
testcase_28 AC 481 ms
43,940 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 491 ms
44,076 KB
testcase_32 AC 485 ms
44,456 KB
testcase_33 AC 508 ms
43,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

import numpy as np

L = int(input())
N = int(input())
length = [int(i) for i in input().split()]

memo = -1*np.ones((N+1,L+1))

def search(i,j):
    if memo[i,j] != -1:
        return memo[i,j]
    else:
        if i == N:
            res = 0
        elif j < length[i]:
            res = search(i+1,j)
        else:
            res = max(search(i+1, j), search(i+1, j - length[i]) + 1)
        memo[i,j] = res

        return res

print(int(search(0,L)))
0