QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#443095 | #8583. 팰린드롬 판별하기 | MaMengQi | Compile Error | / | / | C++17 | 879b | 2024-06-15 14:24:23 | 2024-06-15 14:24:24 |
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:26:19: error: ‘count_pair’ was not declared in this scope 26 | int res = count_pair (i, N - 1 - i, 0); | ^~~~~~~~~~ answer.code:32:14: error: ‘ok’ was not declared in this scope 32 | else ok = i; | ^~ answer.code:34:9: error: ‘find_character’ was not declared in this scope 34 | if (find_character (0, Y)) return 0; | ^~~~~~~~~~~~~~ answer.code:36:17: error: ‘count_pair’ was not declared in this scope 36 | return (count_pair (0, N - 1, id) == 3); | ^~~~~~~~~~ answer.code:38:13: error: ‘count_pair’ was not declared in this scope 38 | return (count_pair (0, N - 1, 1) == 2); | ^~~~~~~~~~