結果

問題 No.554 recurrence formula
ユーザー magurogumamaguroguma
提出日時 2017-09-24 01:14:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 533 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 730,496 KB
最終ジャッジ日時 2024-11-14 05:48:07
合計ジャッジ時間 9,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
18,344 KB
testcase_01 MLE -
testcase_02 AC 32 ms
18,468 KB
testcase_03 AC 31 ms
11,648 KB
testcase_04 AC 33 ms
11,520 KB
testcase_05 AC 32 ms
11,520 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 AC 32 ms
11,520 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 31 ms
11,520 KB
testcase_10 AC 44 ms
12,672 KB
testcase_11 AC 112 ms
26,368 KB
testcase_12 AC 89 ms
21,888 KB
testcase_13 AC 279 ms
61,696 KB
testcase_14 AC 112 ms
26,368 KB
testcase_15 AC 327 ms
71,808 KB
testcase_16 AC 386 ms
85,376 KB
testcase_17 AC 205 ms
45,184 KB
testcase_18 AC 171 ms
38,400 KB
testcase_19 TLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import sys

N = int(input())
M = 10**9 + 7

dp = [0] * (10**5 + 1)
def recurrence(n):
    if n==1:
        dp[n] = 1
    elif n==2:
        dp[n] = 2
    elif n==3:
        dp[n] = 6
    elif n==4:
        dp[n] = 28
    else:
        dp[n] = n*(dp[n-2]//(n-2) + dp[n-1])
        '''
        for i in range(n-1, 0, -2):
            dp[n] += dp[i] % M
        dp[n] *= n
        dp[n] %= M
        '''
    return dp[n]

sys.setrecursionlimit(10**5+1)

for i in range(1, N+1):
    recurrence(i)

print(dp[N]%M)
0