|
||||||||||
Is It SymmetricTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1777 Accepted Submission(s): 726 Problem Description It is easy to see that a string of digits like 1234321 is symmetric with 4 being the central digit. However it is less obvious if we consider the string as a circular one and shift it to the left as 2343211. Your task is to write a program to check if a circular string is symmetric. Input Your program must read test cases from standard input. The input file consists of several test cases. Each case occupies a line which contains the string. Each string contains less than 100 digits. The input is finished by a "#". Output For each test case, your program must output to standard output. If the string is not symmetric, output "NO" in a line; else output "YES", followed by a space and the position of the center (the position index starts from 0). It is guaranteed that the length of the string is an odd number and the center is unique. Sample Input
Sample Output
Source | ||||||||||
|