QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
详细
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