結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-21 22:50:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-09-21 13:11:46
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,424 KB
testcase_01 AC 39 ms
52,652 KB
testcase_02 AC 40 ms
52,744 KB
testcase_03 AC 38 ms
52,692 KB
testcase_04 AC 39 ms
53,464 KB
testcase_05 AC 38 ms
52,908 KB
testcase_06 AC 38 ms
52,604 KB
testcase_07 AC 39 ms
52,748 KB
testcase_08 AC 39 ms
52,692 KB
testcase_09 AC 39 ms
52,444 KB
testcase_10 AC 39 ms
52,524 KB
testcase_11 AC 38 ms
53,008 KB
testcase_12 AC 38 ms
53,324 KB
testcase_13 AC 38 ms
53,504 KB
testcase_14 AC 39 ms
52,252 KB
testcase_15 AC 39 ms
53,180 KB
testcase_16 AC 39 ms
52,800 KB
testcase_17 AC 40 ms
53,500 KB
testcase_18 AC 39 ms
54,100 KB
testcase_19 AC 38 ms
52,456 KB
testcase_20 AC 38 ms
52,548 KB
testcase_21 AC 38 ms
52,264 KB
testcase_22 AC 38 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7


def mat_mul(A, B):
    res = [[0] * len(B[0]) for _ in range(len(A))]
    for i in range(len(A)):
        for k in range(len(A[0])):
            for j in range(len(B[0])):
                res[i][j] += A[i][k] * B[k][j]
                res[i][j] %= mod
    return res


def mat_pow(A, n):
    size = len(A)
    res = [[0] * size for _ in range(size)]
    for i in range(size):
        res[i][i] = 1
    while n:
        if n & 1:
            res = mat_mul(res, A)
        A = mat_mul(A, A)
        n >>= 1
    return res


N = int(input())
A = [[1, 1], [1, 0]]
A = mat_pow(A, N)

x = A[0][0]
y = A[1][0]
print(x * y % mod)
0