結果

問題 No.554 recurrence formula
ユーザー jamadjamad
提出日時 2017-08-22 04:56:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 227 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 750,256 KB
最終ジャッジ日時 2024-10-15 01:05:05
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,572 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 37 ms
11,904 KB
testcase_11 AC 99 ms
25,472 KB
testcase_12 AC 79 ms
21,376 KB
testcase_13 AC 248 ms
61,312 KB
testcase_14 AC 98 ms
25,600 KB
testcase_15 AC 290 ms
71,424 KB
testcase_16 AC 349 ms
84,992 KB
testcase_17 AC 178 ms
44,928 KB
testcase_18 AC 149 ms
38,144 KB
testcase_19 MLE -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

R={1:1,2:2,3:6,4:28}

def f(x):
    if x==1:return 1
    if x<=3:k=R[x-1]
    else:k=R[x-2]//(x-2)+R[x-1]
        
    R[x]=k*x
    return R[x]


for i in range(1,n):f(i)
#    print(i,f(i))
print(f(n)%(10**9+7))
0