結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー liny_tailliny_tail
提出日時 2020-09-05 18:53:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,320 KB
最終ジャッジ日時 2024-05-06 19:48:52
合計ジャッジ時間 10,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
43,936 KB
testcase_01 AC 522 ms
43,808 KB
testcase_02 AC 510 ms
44,192 KB
testcase_03 AC 517 ms
44,320 KB
testcase_04 AC 529 ms
44,192 KB
testcase_05 AC 536 ms
44,320 KB
testcase_06 AC 527 ms
44,060 KB
testcase_07 AC 529 ms
44,192 KB
testcase_08 AC 520 ms
44,192 KB
testcase_09 AC 513 ms
44,188 KB
testcase_10 AC 507 ms
44,064 KB
testcase_11 AC 510 ms
44,320 KB
testcase_12 AC 506 ms
43,936 KB
testcase_13 AC 511 ms
43,808 KB
testcase_14 AC 520 ms
44,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def fib(num1, num2):
  A = np.array([[1,1], [1,0]])
  ans = np.array([[1,0],[0,1]])
  
  for i in bin(num1)[::-1][:-2]:
    if i == '1':
      ans = np.dot(ans, A) % num2
    
    A = np.dot(A,A) % num2
  
  return ans[1][1]

N, M = [int(i) for i in input().strip().split(' ')]
print(fib(N, M))
0