結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー hir355
提出日時 2020-02-19 22:57:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,444 KB
最終ジャッジ日時 2024-10-08 18:24:08
合計ジャッジ時間 9,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def matpow(mat, n, p, mod):
    res = np.identity(n).astype('q')
    while p > 0:
        if p & 1:
            res = res @ mat
            res %= mod
        mat = mat @ mat
        mat %= mod
        p >>= 1
    return res


mat = np.array([[1, 1], [1, 0]]).astype('q')
n, m = map(int, input().split())
print(int(matpow(mat, 2, n, m)[1, 1]))
0