2054.Hongcow Learns the Cyclic Shift

Time Limit: 1s Memory Limit: 256MB

Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word.

Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character of the word to the beginning of the word. He calls this a cyclic shift. He can apply cyclic shift many times. For example, consecutively applying cyclic shift operation to the word "abracadabra" Hongcow will get words "aabracadabr", "raabracadab" and so on.

Hongcow is now wondering how many distinct words he can generate by doing the cyclic shift arbitrarily many times. The initial string is also counted.

Input Format(From the terminal/stdin)

The first line of input will be a single string s (1 \le |s| \le 50), the word Hongcow initially learns how to spell. The string s consists only of lowercase English letters ('a'—'z').

Output Format(To the terminal/stdout)

Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.

Sample Input 1

Copy
abcd
    \n

Sample Output 1

Copy
4
 \n

Sample Input 2

Copy
bbb
   \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
yzyz
    \n

Sample Output 3

Copy
2
 \n

Hints

For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda".

For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb".

For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".

Submit

请先 登录

© 2025 FAQs