結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー ayaoniayaoni
提出日時 2020-12-07 23:10:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 53,948 KB
最終ジャッジ日時 2024-09-17 14:06:08
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,236 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 36 ms
53,108 KB
testcase_03 AC 35 ms
53,148 KB
testcase_04 AC 34 ms
52,976 KB
testcase_05 AC 33 ms
53,492 KB
testcase_06 AC 34 ms
52,756 KB
testcase_07 AC 34 ms
53,244 KB
testcase_08 AC 34 ms
53,752 KB
testcase_09 AC 35 ms
53,532 KB
testcase_10 AC 35 ms
52,456 KB
testcase_11 AC 34 ms
53,076 KB
testcase_12 AC 38 ms
53,284 KB
testcase_13 AC 35 ms
53,220 KB
testcase_14 AC 34 ms
53,948 KB
testcase_15 AC 35 ms
52,408 KB
testcase_16 AC 35 ms
53,164 KB
testcase_17 AC 36 ms
53,948 KB
testcase_18 AC 35 ms
53,564 KB
testcase_19 AC 34 ms
53,568 KB
testcase_20 AC 33 ms
53,288 KB
testcase_21 AC 35 ms
53,292 KB
testcase_22 AC 35 ms
53,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def matrix_multiplication_mod(A,B,p):
    l = len(A)
    m = len(B)
    n = len(B[0])
    C = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            C[i][j] = sum((A[i][k]*B[k][j]) % p for k in range(m)) % p
    return C


def matrix_power_mod(A,n,p):
    l = len(A)
    C = [[0] * l for _ in range(l)]
    for i in range(l):
        C[i][i] = 1
    while n > 0:
        if n % 2 == 1:
            C = matrix_multiplication_mod(C,A,p)
        A = matrix_multiplication_mod(A,A,p)
        n >>= 1
    return C


N = I()
mod = 10**9+7

A = [[1,1],[1,0]]
X = matrix_power_mod(A,N,mod)

print((X[0][0]*X[1][0]) % mod)
0