QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
详细
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;