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