結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ChipppppChippppp
提出日時 2021-05-18 00:54:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,196 KB
最終ジャッジ日時 2024-10-07 06:54:52
合計ジャッジ時間 8,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
44,192 KB
testcase_01 AC 485 ms
44,184 KB
testcase_02 AC 487 ms
44,068 KB
testcase_03 AC 474 ms
44,192 KB
testcase_04 AC 474 ms
44,192 KB
testcase_05 AC 479 ms
43,932 KB
testcase_06 AC 473 ms
44,192 KB
testcase_07 AC 475 ms
43,808 KB
testcase_08 AC 468 ms
44,188 KB
testcase_09 AC 499 ms
43,932 KB
testcase_10 AC 470 ms
43,940 KB
testcase_11 AC 494 ms
43,932 KB
testcase_12 AC 466 ms
44,192 KB
testcase_13 AC 479 ms
43,808 KB
testcase_14 AC 463 ms
44,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n, mod = map(int, input().split())
n -= 1
res = np.array([[1, 0], [0, 1]])
a = np.array([[1, 1], [1, 0]])
while n > 0:
    if n & 1:
        res = np.dot(res, a) % mod
    a = np.dot(a, a) % mod
    n >>= 1
print(np.dot(res, np.array([[1], [0]]))[1][0] % mod)
0