Problem fibo
User limzuwan
Submission Time 2023-06-21 21:09:10
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp: In function ‘int f(int)’:
fibo.cpp:6:20: error: invalid operands of types ‘int(int)’ and ‘int(int)’ to binary ‘operator+’
6 | F[N] = (f[N - 1] + f[N - 2])%998244353;
| ~~~~~~~~ ^ ~~~~~~~~
| | |
| int(int) int(int)