結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ゆきだまるゆきだまる
提出日時 2021-12-09 23:20:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,948 KB
最終ジャッジ日時 2024-07-17 16:18:28
合計ジャッジ時間 11,126 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
43,560 KB
testcase_01 AC 541 ms
43,808 KB
testcase_02 AC 538 ms
43,812 KB
testcase_03 AC 529 ms
43,808 KB
testcase_04 AC 543 ms
43,556 KB
testcase_05 AC 542 ms
43,428 KB
testcase_06 AC 533 ms
43,556 KB
testcase_07 AC 532 ms
43,948 KB
testcase_08 AC 532 ms
43,552 KB
testcase_09 AC 532 ms
43,812 KB
testcase_10 AC 525 ms
43,812 KB
testcase_11 AC 527 ms
43,944 KB
testcase_12 AC 528 ms
43,684 KB
testcase_13 AC 526 ms
43,556 KB
testcase_14 AC 525 ms
43,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def main(n, m):
    #n, m = map(int, input().split())
    x = np.array([[0, 1], [1, 1]])
    y = np.array([[1, 0], [0, 1]])
    s = bin(n)[:1:-1]
    for i in s:
        if i == '1':
            y = np.dot(y, x)
            y %= m
        x = np.dot(x, x)
        x %= m
    z = np.dot(y, [[0], [1]])
    return z[0][0]

n, m = map(int, input().split())
print(main(n-1, m))
0