結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー はにはにはにはに
提出日時 2025-01-01 20:04:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2025-01-01 20:04:53
合計ジャッジ時間 1,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
53,072 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def matrix_multiply(A, B, mod):
    rows_A = len(A)
    cols_A = len(A[0])
    cols_B = len(B[0])
    C = [[0] * cols_B for _ in range(rows_A)]
    for i in range(rows_A):
        for j in range(cols_B):
            for k in range(cols_A):
                C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % mod
    return C

def matrix_power(A, n, mod):
    rows = len(A)
    result = [[1 if i == j else 0 for j in range(rows)] for i in range(rows)]
    while n > 0:
        if n % 2 == 1:
            result = matrix_multiply(result, A, mod)
        A = matrix_multiply(A, A, mod)
        n //= 2
    return result

def fibonacci(n, mod):
    if n <= 1:
        return n
    base_matrix = [[1, 1], [1, 0]]
    powered_matrix = matrix_power(base_matrix, n - 1, mod)
    return powered_matrix[0][0]

N, MOD = map(int, input().split())
result = fibonacci(N, MOD)
print(result)
0