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