QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#442663 | #8583. 팰린드롬 판별하기 | ZhaoZiLong | Compile Error | / | / | C++20 | 1.0kb | 2024-06-15 13:13:18 | 2024-06-15 13:13:20 |
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:8:21: error: ‘count_pair’ was not declared in this scope 8 | int x = count_pair(i,n - 1 - i,n/2 - 1); | ^~~~~~~~~~ answer.code:14:12: error: ‘find_character’ was not declared in this scope 14 | if(find_character(n/2 - 1,v)) { | ^~~~~~~~~~~~~~ answer.code:17:17: error: ‘count_pair’ was not declared in this scope 17 | int x = count_pair(n/2 - 2,n/2 - 1,n/2 + 1); | ^~~~~~~~~~ answer.code:30:21: error: ‘count_pair’ was not declared in this scope 30 | int x = count_pair(i,n - 1 - i,n/2); | ^~~~~~~~~~ answer.code:36:12: error: ‘find_character’ was not declared in this scope 36 | if(find_character(n/2,v)) { | ^~~~~~~~~~~~~~