結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ryhohryhoh
提出日時 2018-11-22 20:05:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,444 KB
最終ジャッジ日時 2024-06-06 22:59:03
合計ジャッジ時間 10,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
44,188 KB
testcase_01 AC 540 ms
43,804 KB
testcase_02 AC 532 ms
44,444 KB
testcase_03 AC 537 ms
44,192 KB
testcase_04 AC 533 ms
44,188 KB
testcase_05 AC 536 ms
44,440 KB
testcase_06 AC 535 ms
44,444 KB
testcase_07 AC 529 ms
44,188 KB
testcase_08 AC 529 ms
44,048 KB
testcase_09 AC 528 ms
44,436 KB
testcase_10 AC 546 ms
44,184 KB
testcase_11 AC 533 ms
43,924 KB
testcase_12 AC 535 ms
44,440 KB
testcase_13 AC 539 ms
43,928 KB
testcase_14 AC 534 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

def pow_mod(A, k):
    if k==1: return A;

    pm = np.mod(pow_mod(A,k//2), m)
    res = np.mod(np.matmul(pm, pm), m)
    if k%2:
        return np.mod(np.matmul(res, A), m)
    else:
        return res

b = np.array([0, 1])
A = np.array([[0, 1], [1, 1]])

print(np.mod(np.matmul(b,pow_mod(A,n-1)),m)[0])
0