結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー kazu_eykazu_ey
提出日時 2021-01-12 22:30:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,316 KB
最終ジャッジ日時 2024-11-21 12:07:44
合計ジャッジ時間 11,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
43,936 KB
testcase_01 AC 561 ms
44,188 KB
testcase_02 AC 561 ms
44,188 KB
testcase_03 AC 553 ms
43,932 KB
testcase_04 AC 550 ms
44,312 KB
testcase_05 AC 540 ms
43,932 KB
testcase_06 AC 546 ms
43,932 KB
testcase_07 AC 558 ms
44,196 KB
testcase_08 AC 555 ms
44,188 KB
testcase_09 AC 546 ms
44,316 KB
testcase_10 AC 550 ms
43,804 KB
testcase_11 AC 561 ms
44,060 KB
testcase_12 AC 558 ms
44,312 KB
testcase_13 AC 554 ms
44,188 KB
testcase_14 AC 549 ms
43,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mat_pow(arr,num,mod):  # 行列arr**num
    import numpy as np
    mat=np.array(arr,dtype="O")%mod
    res=np.eye(len(arr),dtype="O")
    while num:
        if num&1:
            res=res@mat%mod
        mat=mat@mat%mod
        num>>=1
    return res


import sys
input=sys.stdin.readline
n,m=map(int,input().split())
a=[[1,1],[1,0]]
res=mat_pow(a,n-2,m)@[[1],[0]]
print(*res[0])
0