結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー momoyuumomoyuu
提出日時 2022-04-08 22:08:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-11-28 12:47:56
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,252 KB
testcase_01 AC 35 ms
53,392 KB
testcase_02 AC 36 ms
53,348 KB
testcase_03 AC 35 ms
53,104 KB
testcase_04 AC 35 ms
52,200 KB
testcase_05 AC 33 ms
53,072 KB
testcase_06 AC 32 ms
52,872 KB
testcase_07 AC 34 ms
52,988 KB
testcase_08 AC 35 ms
54,180 KB
testcase_09 AC 38 ms
52,820 KB
testcase_10 AC 33 ms
53,808 KB
testcase_11 AC 33 ms
53,204 KB
testcase_12 AC 34 ms
53,836 KB
testcase_13 AC 33 ms
52,804 KB
testcase_14 AC 34 ms
53,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dot(A,B,M):
    l = len(A)
    m = len(A[0])
    if m != len(B):
        return False
    n = len(B[0])
    C = [[] for _ in range(l)]
    for i in range(l):
        for j in range(n):
            sum = 0
            for k in range(m):
                sum += A[i][k]*B[k][j]
                sum %= M
            C[i].append(sum)
    return C

A = [[1,1],[1,0]]
N,M = map(int,input().split())
N -= 1
now = [[1,0],[0,1]]

l = len(bin(N)) - 2
for i in range(l):
    if N >> i & 1 == 1:
        now = dot(now,A,M)
    A = dot(A,A,M)
print(now[1][0])
0