結果

問題 No.554 recurrence formula
コンテスト
ユーザー trineutron
提出日時 2021-01-04 03:53:15
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 189 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 54 ms
コンパイル使用メモリ 14,848 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2026-09-16 00:38:55
合計ジャッジ時間 11,601 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 9 RE * 8 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n = int(input())
odd, even = 1, 0
for i in range(2, n + 1):
    if i % 2 == 0:
        even += i * odd
    else:
        odd += i * even
if n % 2 == 0:
    print(even)
else:
    print(odd)
0