結果

問題 No.554 recurrence formula
ユーザー yansi819yansi819
提出日時 2024-05-17 10:11:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-05-17 10:11:52
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,340 KB
testcase_01 AC 34 ms
53,544 KB
testcase_02 AC 37 ms
52,156 KB
testcase_03 AC 35 ms
53,216 KB
testcase_04 AC 34 ms
52,244 KB
testcase_05 AC 33 ms
53,468 KB
testcase_06 AC 34 ms
52,864 KB
testcase_07 AC 33 ms
53,964 KB
testcase_08 AC 33 ms
52,396 KB
testcase_09 AC 32 ms
53,096 KB
testcase_10 AC 37 ms
58,772 KB
testcase_11 AC 37 ms
59,744 KB
testcase_12 AC 44 ms
59,244 KB
testcase_13 AC 39 ms
59,912 KB
testcase_14 AC 38 ms
59,580 KB
testcase_15 AC 37 ms
59,048 KB
testcase_16 AC 37 ms
59,184 KB
testcase_17 AC 37 ms
59,232 KB
testcase_18 AC 38 ms
59,308 KB
testcase_19 AC 39 ms
60,212 KB
testcase_20 AC 37 ms
59,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [0] * (n + 1)
a[1] = 1
mod = 1000000007
odd, even = 0, 0
for i in range(2, n + 1):
    if i % 2 == 0:
        odd += a[i - 1]
        a[i] = i * odd % mod
    else:
        even += a[i - 1]
        a[i] = i * even % mod
print(a[n])
0