Problem fibo
User axo
Submission Time 2026-05-14 10:25:59
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp: In function ‘int f(int)’:
fibo.cpp:5:9: error: lvalue required as left operand of assignment
5 | f(0) = 0;
| ^
fibo.cpp:6:9: error: lvalue required as left operand of assignment
6 | f(1) = 1;
| ^
fibo.cpp:7:29: error: lvalue required as left operand of assignment
7 | f(X) = (f(X-1) + f(X-2)) % 998244353;
| ^~~~~~~~~
fibo.cpp: In function ‘int main()’:
fibo.cpp:11:9: error: ‘N’ was not declared in this scope
11 | cin >> N;
| ^