結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー kuruton456kuruton456
提出日時 2020-12-29 13:14:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,184 KB
最終ジャッジ日時 2024-10-05 11:13:32
合計ジャッジ時間 9,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 440 ms
44,096 KB
testcase_01 AC 438 ms
43,792 KB
testcase_02 AC 447 ms
44,052 KB
testcase_03 AC 435 ms
44,048 KB
testcase_04 AC 437 ms
43,832 KB
testcase_05 AC 445 ms
43,800 KB
testcase_06 WA -
testcase_07 AC 445 ms
43,784 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 437 ms
43,776 KB
testcase_13 WA -
testcase_14 AC 441 ms
44,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M = map(int,input().split())
A = np.array([[1,1],[1,0]])
A = np.linalg.matrix_power(A, N - 1)
B = np.array([1,0])
C = np.dot(A, B)
print(C[1] % M)
0