結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー tomo6930tomo6930
提出日時 2021-10-22 23:39:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,564 KB
最終ジャッジ日時 2024-09-24 06:29:39
合計ジャッジ時間 10,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
44,184 KB
testcase_01 AC 513 ms
44,432 KB
testcase_02 AC 509 ms
44,176 KB
testcase_03 AC 508 ms
44,180 KB
testcase_04 AC 507 ms
44,172 KB
testcase_05 AC 509 ms
43,916 KB
testcase_06 WA -
testcase_07 AC 510 ms
44,436 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 507 ms
44,428 KB
testcase_13 WA -
testcase_14 AC 509 ms
44,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M = map(int, input().split())

mat = np.matrix([[1, 1], [1, 0]])
fib = np.matrix([[0], [1]])
mat_N = np.linalg.matrix_power(mat, N)
ans = np.dot(mat_N, fib)
print(ans[1, 0]%M)
0