QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#69907 | #4436. Link with Bracket Sequence II | HuangHanSheng | Compile Error | / | / | C++20 | 819b | 2023-01-03 13:43:56 | 2023-01-03 13:43: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:22:17: error: ‘memset’ was not declared in this scope 22 | memset(dp1,0,sizeof(dp1)); | ^~~~~~ answer.code:2:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 1 | #include<iostream> +++ |+#include <cstring> 2 | using namespace std;