結果

問題 No.554 recurrence formula
ユーザー roarisroaris
提出日時 2019-08-18 20:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 60,460 KB
最終ジャッジ日時 2024-10-01 14:32:23
合計ジャッジ時間 1,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,816 KB
testcase_01 AC 39 ms
52,236 KB
testcase_02 AC 36 ms
52,628 KB
testcase_03 AC 36 ms
53,496 KB
testcase_04 AC 35 ms
52,556 KB
testcase_05 AC 35 ms
52,148 KB
testcase_06 AC 34 ms
53,196 KB
testcase_07 AC 35 ms
52,676 KB
testcase_08 AC 33 ms
52,632 KB
testcase_09 AC 34 ms
52,280 KB
testcase_10 AC 36 ms
59,712 KB
testcase_11 AC 37 ms
60,460 KB
testcase_12 AC 36 ms
59,532 KB
testcase_13 AC 39 ms
59,308 KB
testcase_14 AC 41 ms
59,312 KB
testcase_15 AC 42 ms
59,704 KB
testcase_16 AC 37 ms
59,920 KB
testcase_17 AC 40 ms
59,504 KB
testcase_18 AC 40 ms
59,312 KB
testcase_19 AC 38 ms
58,460 KB
testcase_20 AC 37 ms
59,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

if n == 1:
    print(1)
    exit()
    
MOD = 10 ** 9 + 7
even_acc, odd_acc = 0, 1

for i in range(2, n+1):
    if i == n:
        if i % 2 == 0:
            print(i * odd_acc % MOD)
        else:
            print(i * even_acc % MOD)
        exit()
        
    if i % 2 == 0:
        even_acc += i * odd_acc
        even_acc %= MOD
    else:
        odd_acc += i * even_acc
        odd_acc %= MOD
0