結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー Taiki MaekawaTaiki Maekawa
提出日時 2021-02-19 16:02:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 158 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,788 KB
最終ジャッジ日時 2024-09-16 05:02:56
合計ジャッジ時間 10,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
49,788 KB
testcase_01 AC 463 ms
43,768 KB
testcase_02 AC 473 ms
44,412 KB
testcase_03 AC 462 ms
43,928 KB
testcase_04 AC 467 ms
44,176 KB
testcase_05 AC 456 ms
44,288 KB
testcase_06 AC 472 ms
43,772 KB
testcase_07 AC 468 ms
43,792 KB
testcase_08 AC 502 ms
43,776 KB
testcase_09 AC 709 ms
44,028 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())

f = np.array([0, 1])
m = np.array([[1, 1], [1, 0]])
for _ in range(N):
    f = m.dot(f) % M
print(f[1])
0