QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#76357 | #5466. Permutation Compression | guowenzz | Compile Error | / | / | C++17 | 1.8kb | 2023-02-09 12:51:46 | 2023-02-09 12:51:48 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:42:9: error: ‘memset’ was not declared in this scope 42 | memset(left, 0, sizeof(left)); | ^~~~~~ answer.code:4:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 3 | #include <algorithm> +++ |+#include <cstring> 4 |