| Problem | fibo_easy |
|---|---|
| User | wtnetlegend |
| Submission Time | 2026-07-06 18:31:17 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo_easy.cpp: In function ‘int main()’:
fibo_easy.cpp:2:5: error: ‘ios’ has not been declared
2 | ios::sync_with_stdio(false);
| ^~~
fibo_easy.cpp:3:5: error: ‘cin’ was not declared in this scope
3 | cin.tie(0);
| ^~~
fibo_easy.cpp:4:5: error: ‘cout’ was not declared in this scope
4 | cout.tie(0);
| ^~~~
fibo_easy.cpp:5:5: error: ‘ll’ was not declared in this scope
5 | ll n; cin >> n;
| ^~
fibo_easy.cpp:5:18: error: ‘n’ was not declared in this scope
5 | ll n; cin >> n;
| ^
fibo_easy.cpp:9:9: error: ‘vector’ was not declared in this scope
9 | vector<ll> fibo(n+1, 0);
| ^~~~~~
fibo_easy.cpp:9:20: error: ‘fibo’ was not declared in this scope
9 | vector<ll> fibo(n+1, 0);
| ^~~~
fibo_easy.cpp:12:13: error: ‘i’ was not declared in this sc