QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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.
Details
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;