QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#56355 | #3353. Robberies | GuanYunchang | Compile Error | / | / | C++23 | 609b | 2022-10-18 21:48:40 | 2022-10-18 21:48:42 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:16:17: error: ‘memset’ was not declared in this scope 16 | memset(dp, 0, sizeof(dp)); | ^~~~~~ answer.code:2:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 1 | #include<iostream> +++ |+#include <cstring> 2 | #include<string>