結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | 👑 rin204 |
提出日時 | 2021-08-18 00:28:25 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 661 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 53,960 KB |
最終ジャッジ日時 | 2024-10-11 01:10:54 |
合計ジャッジ時間 | 1,473 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
53,504 KB |
testcase_01 | AC | 45 ms
53,760 KB |
testcase_02 | AC | 43 ms
53,376 KB |
testcase_03 | AC | 43 ms
53,376 KB |
testcase_04 | AC | 43 ms
53,504 KB |
testcase_05 | AC | 43 ms
53,376 KB |
testcase_06 | AC | 42 ms
53,760 KB |
testcase_07 | AC | 42 ms
53,632 KB |
testcase_08 | AC | 42 ms
53,960 KB |
testcase_09 | AC | 43 ms
53,760 KB |
testcase_10 | AC | 44 ms
53,504 KB |
testcase_11 | AC | 43 ms
53,504 KB |
testcase_12 | AC | 46 ms
53,760 KB |
testcase_13 | AC | 44 ms
53,760 KB |
testcase_14 | AC | 43 ms
53,760 KB |
ソースコード
from copy import deepcopy def matpow(A, B, w): l = len(A) while w: if w & 1: C = [0] * l for i in range(l): for j in range(l): C[i] += A[i][j] * B[j] C[i] %= MOD B = C.copy() C = [[0] * l for _ in range(l)] for i in range(l): for j in range(l): for k in range(l): C[i][j] += A[i][k] * A[k][j] C[i][j] %= MOD A = deepcopy(C) w >>= 1 return B n, MOD = map(int, input().split()) A = [[1, 1], [1, 0]] B = [1, 0] C = matpow(A, B, n - 1) print(C[1])