QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#101277 | #2919. Subprime | MaMengQi | Compile Error | / | / | C++17 | 1014b | 2023-04-29 03:59:54 | 2023-04-29 03:59:56 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code:16:5: error: ‘int index’ redeclared as different kind of entity 16 | int index; | ^~~~~ In file included from /usr/include/string.h:432, from /usr/include/c++/11/cstring:42, from /usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:48, from answer.code:1: /usr/include/strings.h:61:1: note: previous declaration ‘const char* index(const char*, int)’ 61 | index (const char *__s, int __c) __THROW | ^~~~~ answer.code: In function ‘void sieve()’: answer.code:19:11: error: overloaded function with no contextual type information 19 | index = 0; | ^ answer.code:24:13: error: no post-increment operator for type 24 | ct[index++] = i; | ^~