結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 42 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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())

MOD=m
X=[[1],
   [0]]
T=[[1,1],
   [1,0]]
T=mat_pow(T,n)

print(T[1][1])
0