Problem fibotree
User xp
Submission Time 2025-09-22 11:25:18
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibotree.cpp: In function ‘int main()’:
fibotree.cpp:136:32: error: taking address of temporary array
136 | matrix fibo((long long [2][2]){{1, 1}, {1, 0}});
| ^~~~~~~~~~~~~~~~
fibotree.cpp:137:36: error: taking address of temporary array
137 | matrix fibo_inv((long long [2][2]){{0, 1}, {1, M-1}});
| ^~~~~~~~~~~~~~~~~~