結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
44,324 KB
testcase_01 AC 529 ms
43,812 KB
testcase_02 AC 524 ms
44,320 KB
testcase_03 AC 524 ms
44,056 KB
testcase_04 AC 520 ms
43,940 KB
testcase_05 AC 527 ms
43,940 KB
testcase_06 AC 521 ms
43,940 KB
testcase_07 AC 534 ms
43,936 KB
testcase_08 AC 516 ms
43,940 KB
testcase_09 AC 516 ms
43,936 KB
testcase_10 AC 515 ms
43,936 KB
testcase_11 AC 519 ms
44,064 KB
testcase_12 AC 515 ms
43,688 KB
testcase_13 AC 514 ms
43,680 KB
testcase_14 AC 521 ms
43,676 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