結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー sho_00sho_00
提出日時 2020-04-06 18:34:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-07-06 15:28:57
合計ジャッジ時間 9,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
43,956 KB
testcase_01 AC 418 ms
44,208 KB
testcase_02 AC 434 ms
44,084 KB
testcase_03 AC 420 ms
44,204 KB
testcase_04 AC 423 ms
43,948 KB
testcase_05 AC 413 ms
44,204 KB
testcase_06 AC 420 ms
44,212 KB
testcase_07 AC 422 ms
44,088 KB
testcase_08 AC 419 ms
44,344 KB
testcase_09 AC 417 ms
44,204 KB
testcase_10 AC 417 ms
44,212 KB
testcase_11 AC 418 ms
44,336 KB
testcase_12 AC 414 ms
44,080 KB
testcase_13 AC 423 ms
44,340 KB
testcase_14 AC 418 ms
44,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n,m=map(int,input().split())
mod=m

def seq_mat(A,k,mod):
  if k==1:
    return A
  else:
    if k%2==0:
      tmp=seq_mat(A,k//2,mod)
      ret=np.dot(tmp,tmp)
    else:
      tmp=seq_mat(A,k-1,mod)
      ret=np.dot(A,tmp)
    for i in range(2):
        for j in range(2):
          ret[i][j]%=mod
    return ret
      
A=np.array([[1,1],[1,0]])
if n<=2:
  print((n-1)%mod)
else:
  fib_n=seq_mat(A,n-2,mod)[0][0]
  print(fib_n)
0