QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#443337 | #8583. 팰린드롬 판별하기 | GuanYunchang | Compile Error | / | / | C++23 | 1.6kb | 2024-06-15 15:12:24 | 2024-06-15 15:12:25 |
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:33:30: error: ‘n’ was not declared in this scope 33 | for (int i = 1; i < (n - 1) / 2 - (n % 2); i++) { | ^ answer.code:47:31: error: ‘n’ was not declared in this scope 47 | int c = count_pair(0, n - 1, 1); | ^