結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー hir355hir355
提出日時 2020-02-19 22:50:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,428 KB
最終ジャッジ日時 2024-10-08 18:21:21
合計ジャッジ時間 11,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
46,028 KB
testcase_01 AC 527 ms
44,576 KB
testcase_02 AC 532 ms
46,420 KB
testcase_03 AC 534 ms
44,832 KB
testcase_04 AC 533 ms
46,040 KB
testcase_05 AC 526 ms
44,200 KB
testcase_06 AC 526 ms
44,456 KB
testcase_07 AC 531 ms
46,280 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 531 ms
44,328 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def matpow(mat, n, p, mod):
    res = np.identity(n)
    while p > 0:
        if p & 1:
            res = res @ mat
            res %= mod
        mat = mat @ mat
        mat %= mod
        p >>= 1
    return res


mat = np.array([[1, 1], [1, 0]])
n, m = map(int, input().split())
print(int(matpow(mat, 2, n, m)[1, 1]))
0