結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー S33582754SS33582754S
提出日時 2021-11-12 23:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,111 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-11-25 21:52:23
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,672 KB
testcase_01 AC 37 ms
52,128 KB
testcase_02 AC 35 ms
52,524 KB
testcase_03 AC 33 ms
52,552 KB
testcase_04 AC 34 ms
52,468 KB
testcase_05 AC 37 ms
52,988 KB
testcase_06 AC 34 ms
52,884 KB
testcase_07 AC 36 ms
52,980 KB
testcase_08 AC 36 ms
52,648 KB
testcase_09 AC 36 ms
52,460 KB
testcase_10 AC 39 ms
53,900 KB
testcase_11 AC 35 ms
53,004 KB
testcase_12 AC 36 ms
53,324 KB
testcase_13 AC 35 ms
52,712 KB
testcase_14 AC 38 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 行列A, Bの積
def matrix_mul(A,B,mod = None):
  row = len(A)
  column = len(A[0])
  temp = [[0]*column for _ in range(row)]
  if mod is None:
    for i in range(row):
      for j in range(column):
        for k in range(column):
          temp[i][j] += A[i][k] * B[k][j]
    return temp
  else:
    for i in range(row):
      for j in range(column):
        for k in range(column):
          temp[i][j] = (temp[i][j] + A[i][k] * B[k][j])% mod
    return temp

# 行列Aのn乗(行列累乗)
def matrix_pow(A,n,mod = None):
  nbit = list(str(bin(n))[2:])
  nbit = [int(i) for i in nbit]
  row = len(A)
  column = len(A[0])
  B = A
  C = [[0]*column for _ in range(row)]
  for i in range(row):
    C[i][i] = 1
  
  if mod is None:
    for i in range(-1, -len(nbit)-1, -1):
      if nbit[i] == 1:
        C = matrix_mul(C, B)
      B = matrix_mul(B, B)
    return C
  else:
    for i in range(-1, -len(nbit)-1, -1):
      if nbit[i] == 1:
        C = matrix_mul(C, B, mod)
      B = matrix_mul(B, B, mod)
    return C

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