結果

問題 No.3046 yukicoderの過去問
ユーザー zutsuzutsu
提出日時 2022-05-21 18:38:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 329 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,208 KB
最終ジャッジ日時 2024-09-20 12:03:15
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
49,208 KB
testcase_01 AC 444 ms
44,204 KB
testcase_02 AC 449 ms
43,820 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

K = int(input())
N = int(input())
X = np.array(list(map(int, input().split())))
dp = np.zeros(K, dtype = int)
Y = np.zeros(K, dtype = int)
mod = 10**9 + 7

for x in X:
    if x < K:
        Y[-x] = 1
        dp[x-1] = 1

for j in range(1,K):
    dp[j] += np.dot(Y[-j:], dp[:j])
    dp[j] %= mod

print(dp[-1])
0