結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー るこーそーるこーそー
提出日時 2024-09-25 20:10:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-09-25 20:10:51
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 43 ms
58,112 KB
testcase_09 AC 44 ms
58,736 KB
testcase_10 AC 54 ms
65,920 KB
testcase_11 AC 88 ms
97,408 KB
testcase_12 AC 75 ms
96,896 KB
testcase_13 AC 111 ms
97,152 KB
testcase_14 AC 76 ms
96,640 KB
権限があれば一括ダウンロードができます

ソースコード

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

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

dp=[0]*(n+1)
dp[1]=0;dp[2]=1
for i in range(3,n+1):
    dp[i]=(dp[i-1]+dp[i-2])%m

print(dp[n])
0