QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#34786 | #4251. Game | alch07# | Compile Error | / | / | C++14 | 796b | 2022-06-12 07:34:27 | 2024-05-26 00:56:20 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code: In function ‘int add_teleporter(int, int)’: answer.code:37:5: error: ‘memset’ was not declared in this scope 37 | memset(vis,0,nn); | ^~~~~~ answer.code:3:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 2 | #include <vector> +++ |+#include <cstring> 3 | using namespace std;