結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ajinoriajinori
提出日時 2018-11-22 20:15:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 429 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,412 KB
最終ジャッジ日時 2024-12-24 17:51:15
合計ジャッジ時間 18,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 578 ms
44,284 KB
testcase_01 AC 582 ms
43,904 KB
testcase_02 AC 583 ms
44,044 KB
testcase_03 AC 577 ms
44,408 KB
testcase_04 AC 578 ms
44,020 KB
testcase_05 AC 577 ms
44,156 KB
testcase_06 AC 583 ms
44,164 KB
testcase_07 AC 584 ms
43,784 KB
testcase_08 AC 595 ms
44,408 KB
testcase_09 AC 609 ms
44,412 KB
testcase_10 AC 894 ms
43,768 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import functools
import numpy as np
n,m= map(int,input().split())
# @functools.lru_cache(maxsize = None)
#
# def func(p):
#     if p==1 : return np.mod(arr,m)
#     if p%2==1:
#         return np.mod(func(p-1)*arr,m)
#     else:
#         return np.mod(func(p//2)*func(p//2),m)
#
# arr = np.mat([[0,1],[1,1]])
# bb = np.mat([0,1])*func(n-1)
# print(bb.item((0,0)))
a = 0
b = 1
for i in range(n-2):
    a,b = (b,(a+b)%m)
print(b)
0