結果

問題 No.554 recurrence formula
ユーザー jamadjamad
提出日時 2017-08-22 04:52:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,008 KB
最終ジャッジ日時 2024-10-15 01:04:59
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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%(10**9+7)
    return R[x]


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