結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー dn6049949dn6049949
提出日時 2020-03-29 22:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,103 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-06-10 19:33:17
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# 行列累乗 O(H^3logN) (H := matrix Aの次元)

# 行列演算に用いる演算add,mulおよびmulの単位元
add = lambda x,y:x+y
mul = lambda x,y:x*y
default = 1

# 内積
def product(a, b, mod=None):
    if mod is None:
        res = 0
        for i,j in zip(a,b):
            res = add(res,mul(i,j))
        return res
    else:
        res = 0
        for i,j in zip(a,b):
            m = mul(i,j)
            if m >= mod:
                m %= mod
            res = add(res,m)
            if res >= mod:
                res %= mod
        return res

# 行列積
def mul_of_matrix(a, b, mod=None):
    bt = [[b[i][j] for i in range(len(b))] for j in range(len(b[0]))]
    return [[product(ai,bj,mod) for bj in bt] for ai in a]

# 行列累乗
def pow_of_matrix(a, n, mod=None):
    res = [[default if i == j else 0 for j in range(len(a))] for i in range(len(a))]
    while n:
        if n&1:
            res = mul_of_matrix(res,a,mod)
        a = mul_of_matrix(a,a,mod)
        n >>= 1
    return res

n,m = map(int, input().split())
mat = pow_of_matrix([[1,1],[1,0]],n-1,m)
print(mat[1][0])
0