結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー るこーそーるこーそー
提出日時 2024-09-25 20:09:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 827 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 273,664 KB
最終ジャッジ日時 2024-09-25 20:09:38
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,944 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 47 ms
58,496 KB
testcase_08 AC 59 ms
71,296 KB
testcase_09 AC 235 ms
172,928 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353


def mat_mul(a, b):
    res = [[0] * len(b[0]) for _ in range(len(a))]
    for i in range(len(a)):
        for j in range(len(b[0])):
            for k in range(len(b)):
                res[i][j] = (res[i][j] + a[i][k] * b[k][j]) % MOD
    return res


def mat_pow(m, k):
    res = [[0] * len(m) for _ in range(len(m))]
    for i in range(len(m)):
        res[i][i] = 1
    while k:
        if k & 1:
            res = mat_mul(res, m)
        m = mat_mul(m, m)
        k >>= 1
    return res

import sys
sys.setrecursionlimit(10**5)
input=sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n,m=map(int,input().split())

memo={}
def fib(n):
    if n in memo:return memo[n]
    if n==1:return 0
    if n==2:return 1
    memo[n]=(fib(n-1)+fib(n-2))%m
    return memo[n]

print(fib(n))
0