| Problem | catfight |
|---|---|
| User | LimCheeHann |
| Submission Time | 2026-03-16 19:52:40 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
catfight.cpp: In function ‘int main()’:
catfight.cpp:6:2: error: ‘vector’ was not declared in this scope
6 | vector<long long> power={0};
| ^~~~~~
catfight.cpp:6:2: note: suggested alternatives:
In file included from /usr/include/c++/9/vector:67,
from catfight.cpp:2:
/usr/include/c++/9/bits/stl_vector.h:386:11: note: ‘std::vector’
386 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
In file included from catfight.cpp:2:
/usr/include/c++/9/vector:90:13: note: ‘std::pmr::vector’
90 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
catfight.cpp:6:9: error: expected primary-expression before ‘long’
6 | vector<long long> power={0};
| ^~~~
catfight.cpp:7:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
7 | cin >> N >> P;
| ^~