QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#259588 | #6398. Puzzle: Tapa | GuanYunchang | Compile Error | / | / | C++17 | 3.0kb | 2023-11-21 04:09:55 | 2023-11-21 04:09:56 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:58:9: error: ‘memset’ was not declared in this scope 58 | memset(vis,0,sizeof vis); | ^~~~~~ answer.code:5:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 4 | #include <tuple> +++ |+#include <cstring> 5 | using namespace std;