Problem | dquery |
---|---|
User | PlayVoltz |
Submission Time | 2023-07-29 23:52:33 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
dquery.cpp: In function ‘int main()’:
dquery.cpp:17:14: error: type/value mismatch at argument 1 in template parameter list for ‘template<long unsigned int _Nb> class std::bitset’
17 | bitset <int> uset;
| ^
dquery.cpp:17:14: note: expected a constant of type ‘long unsigned int’, got ‘int’
dquery.cpp:19:9: error: request for member ‘set’ in ‘uset’, which is of non-class type ‘int’
19 | uset.set(vect[i]);
| ^~~
dquery.cpp:21:14: error: request for member ‘count’ in ‘uset’, which is of non-class type ‘int’
21 | cout<<uset.count()<<"\n";
| ^~~~~