QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#443097 | #8583. 팰린드롬 판별하기 | ZhangYiDe | Compile Error | / | / | C++23 | 1.3kb | 2024-06-15 14:24:26 | 2024-06-15 14:24:27 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int guess_palindromicity(int)’: answer.code:32:30: error: ‘n’ was not declared in this scope 32 | for (int i = 0; i < (n - 1) / 2; i++) { | ^ answer.code:33:35: error: could not convert ‘{<expression error>}’ from ‘<brace-enclosed initializer list>’ to ‘std::vector<int>’ 33 | if (find_character(i, {n - 1 - i}) == 0) { | ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ | | | <brace-enclosed initializer list>