QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#525628 | #8512. Harmonic Operations | ucup-team3556# | Compile Error | / | / | C++17 | 3.6kb | 2024-08-20 19:38:16 | 2024-08-20 19:38:17 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void solve()’: answer.code:94:5: error: ‘bitset’ was not declared in this scope 94 | bitset<500001> b, b1; | ^~~~~~ answer.code:24:1: note: ‘std::bitset’ is defined in header ‘<bitset>’; did you forget to ‘#include <bitset>’? 23 | #include <climits> +++ |+#include <bitset> 24 | answer.code:94:20: error: ‘b’ was not declared in this scope 94 | bitset<500001> b, b1; | ^ answer.code:94:23: error: ‘b1’ was not declared in this scope; did you mean ‘s1’? 94 | bitset<500001> b, b1; | ^~ | s1