結果

問題 No.554 recurrence formula
ユーザー magurogumamaguroguma
提出日時 2017-09-24 01:45:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-11-14 05:49:10
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,520 KB
testcase_01 AC 32 ms
11,520 KB
testcase_02 AC 31 ms
11,520 KB
testcase_03 AC 30 ms
11,520 KB
testcase_04 AC 31 ms
11,520 KB
testcase_05 AC 31 ms
11,520 KB
testcase_06 AC 30 ms
11,520 KB
testcase_07 AC 30 ms
11,520 KB
testcase_08 AC 31 ms
11,520 KB
testcase_09 AC 31 ms
11,520 KB
testcase_10 AC 31 ms
11,520 KB
testcase_11 AC 33 ms
11,648 KB
testcase_12 AC 33 ms
11,776 KB
testcase_13 AC 35 ms
11,776 KB
testcase_14 AC 33 ms
11,648 KB
testcase_15 AC 35 ms
11,776 KB
testcase_16 AC 35 ms
11,776 KB
testcase_17 AC 34 ms
11,648 KB
testcase_18 AC 34 ms
11,648 KB
testcase_19 AC 76 ms
14,720 KB
testcase_20 AC 77 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys

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

dp = [0] * (10**5 + 1)
def recurrence(n):
    if n==0:
        dp[n] = 0
    elif n==1:
        dp[n] = 1
    elif n==2:
        dp[n] = 2
    else:
        dp[n] = (n*dp[n-1] + dp[n-2]) % M

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

print((dp[N]-dp[N-2]) % M)
0