結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー asumo0729asumo0729
提出日時 2021-04-04 12:20:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 10,888 KB
実行使用メモリ 29,688 KB
最終ジャッジ日時 2023-08-27 09:06:25
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
29,600 KB
testcase_01 AC 139 ms
29,476 KB
testcase_02 AC 133 ms
29,620 KB
testcase_03 AC 132 ms
29,572 KB
testcase_04 AC 134 ms
29,616 KB
testcase_05 AC 134 ms
29,516 KB
testcase_06 AC 132 ms
29,584 KB
testcase_07 AC 135 ms
29,592 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 131 ms
29,600 KB
testcase_13 WA -
testcase_14 AC 134 ms
29,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')

N, M = lp()

A = []
basic = np.array([[0, 1],[1, 1]],dtype=int)
A.append(basic)
for i in range(40):
    now = A[-1]
    nex = np.dot(now,now)
    A.append(nex)
st  = 39
gyouretu = np.eye(2,dtype=int)
N -= 2
while N:
    if 2**st > N:
        st -= 1
        continue
    else:
        N -= 2**st
        gyouretu = np.dot(gyouretu, A[st])
        gyouretu %= M
        st -= 1

ans = np.dot(gyouretu, np.array([0, 1]))
ans %= M

print(ans[1])

0