結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー aru_creatoraru_creator
提出日時 2018-11-22 20:47:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,504 KB
最終ジャッジ日時 2024-06-06 23:02:29
合計ジャッジ時間 9,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
50,504 KB
testcase_01 AC 515 ms
43,432 KB
testcase_02 AC 517 ms
43,564 KB
testcase_03 AC 515 ms
43,564 KB
testcase_04 AC 507 ms
44,076 KB
testcase_05 AC 512 ms
43,440 KB
testcase_06 AC 509 ms
43,948 KB
testcase_07 AC 517 ms
44,216 KB
testcase_08 AC 550 ms
44,076 KB
testcase_09 AC 818 ms
43,956 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np 

def calFibonatti(N,M):
    if N<=3:
        if N == 1:
            return 0
        return 1
    N = N - 3
    
    
    A = np.zeros((2,2), dtype='int32')
    A[0][0]=1
    A[0][1]=1
    A[1][0]=1
    A[1][1]=0
    
    result = np.copy(A)
    
    for i in range(N):
        result = np.mod(result.dot(A),M)
    
    return result[0][0]




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

print(calFibonatti(N, M))
0