結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー zundamo-tizundamo-ti
提出日時 2020-10-23 12:08:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 422 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,060 KB
最終ジャッジ日時 2024-07-21 10:01:23
合計ジャッジ時間 12,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
48,944 KB
testcase_01 AC 570 ms
43,832 KB
testcase_02 AC 589 ms
43,456 KB
testcase_03 AC 569 ms
43,820 KB
testcase_04 AC 565 ms
43,688 KB
testcase_05 AC 566 ms
43,676 KB
testcase_06 AC 563 ms
43,440 KB
testcase_07 AC 572 ms
43,948 KB
testcase_08 AC 670 ms
43,688 KB
testcase_09 AC 1,398 ms
44,076 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())
F = np.array([[1, 1], [1, 0]])

def modpow(F, n):
    if n == 0:
        return np.array([[1, 0], [0, 1]])
    if n % 2 == 0:
        ret = modpow(F, n // 2) @ modpow(F, n // 2)
        ret %= M
        return ret
    else:
        ret = F @ modpow(F, n // 2) @ modpow(F, n // 2)
        ret %= M
        return ret

X = modpow(F, N - 1) @ np.array([1, 0])
print(X[1])
0