QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#56367 | #3353. Robberies | ZhangYiDe | Compile Error | / | / | C++11 | 585b | 2022-10-18 23:12:33 | 2022-10-18 23:12:33 |
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:18:7: error: ‘memset’ was not declared in this scope 18 | memset(f,0,sizeof(f)); | ^~~~~~ answer.code:2:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 1 | #include<iostream> +++ |+#include <cstring> 2 | #define M 10005