QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#312305 | #5146. Skills | MaMengQi | Compile Error | / | / | C++14 | 2.8kb | 2024-01-23 19:43:54 | 2024-01-23 19:43:54 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int solve()’: answer.code:20:9: error: ‘memset’ was not declared in this scope 20 | memset(dp,-1,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 | #define ll long long