QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#163480 | #5522. F*** 3-Colorable Graphs | MaMengQi | Compile Error | / | / | C++ | 821b | 2023-09-04 08:58:13 | 2023-09-04 08:58:14 |
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:29:5: error: ‘memset’ was not declared in this scope 29 | memset(visited, false, sizeof(visited)); | ^~~~~~ answer.code:7:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 6 | #include <vector> +++ |+#include <cstring> 7 |