結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー wesoweeenwesoweeen
提出日時 2022-02-02 21:18:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 285 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-06-11 09:36:29
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,872 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 129 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 296 ms
10,496 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1500)

def fibonacci(n) -> int:
    if n == 0 or n == 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)


def main() -> None:
    N, M = map(int, input().split())
    print(fibonacci(N - 1) % M)


if __name__ == "__main__":
    main()
0