QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#163481 | #5522. F*** 3-Colorable Graphs | HuangHanSheng | Compile Error | / | / | C++ | 840b | 2023-09-04 08:58:30 | 2023-09-04 08:58:31 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:7:2: error: invalid preprocessing directive #inclued; did you mean #include? 7 | #inclued <cstring> | ^~~~~~~ | include answer.code: In function ‘int main()’: answer.code:30:5: error: ‘memset’ was not declared in this scope 30 | 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 | #inclued <cstring>