QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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.
Details
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>