QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#56355#3353. RobberiesGuanYunchangCompile Error//C++23609b2022-10-18 21:48:402022-10-18 21:48:42

Details

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>