結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | るこーそー |
提出日時 | 2024-09-25 20:18:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 610 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 81,896 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-09-25 20:18:32 |
合計ジャッジ時間 | 1,505 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,840 KB |
testcase_01 | AC | 40 ms
51,840 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 39 ms
52,096 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 39 ms
52,608 KB |
testcase_06 | AC | 40 ms
52,344 KB |
testcase_07 | AC | 40 ms
52,400 KB |
testcase_08 | AC | 39 ms
52,352 KB |
testcase_09 | AC | 40 ms
52,608 KB |
testcase_10 | AC | 41 ms
52,352 KB |
testcase_11 | AC | 40 ms
52,224 KB |
testcase_12 | AC | 40 ms
52,352 KB |
testcase_13 | AC | 40 ms
52,608 KB |
testcase_14 | AC | 39 ms
52,224 KB |
ソースコード
def mat_mul(a, b): res = [[0] * len(b[0]) for _ in range(len(a))] for i in range(len(a)): for j in range(len(b[0])): for k in range(len(b)): res[i][j] = (res[i][j] + a[i][k] * b[k][j]) % MOD return res def mat_pow(m, k): res = [[0] * len(m) for _ in range(len(m))] for i in range(len(m)): res[i][i] = 1 while k: if k & 1: res = mat_mul(res, m) m = mat_mul(m, m) k >>= 1 return res n,m=map(int,input().split()) MOD=m X=[[1], [0]] T=[[1,1], [1,0]] T=mat_pow(T,n-2) T=mat_mul(T,X) print(T[0][0])