#R066B. [ABC066B] ss
[ABC066B] ss
Score : points
Problem Statement
We will call a string that can be obtained by concatenating two equal strings an even string.
For example, xyzxyz and aaaaaa are even, while ababab and xyzxy are not.
You are given an even string consisting of lowercase English letters. Find the length of the longest even string that can be obtained by deleting one or more characters from the end of . It is guaranteed that such a non-empty string exists for a given input.
Constraints
- is an even string consisting of lowercase English letters.
- There exists a non-empty even string that can be obtained by deleting one or more characters from the end of .
Input
Input is given from Standard Input in the following format:
Output
Print the length of the longest even string that can be obtained.
abaababaab
6
abaababaabitself is even, but we need to delete at least one character.abaababaais not even.abaababais not even.abaababis not even.abaabais even. Thus, we should print its length, .
xxxx
2
xxxis not even.xxis even.
abcabcabcabc
6
The longest even string that can be obtained is abcabc, whose length is .
akasakaakasakasakaakas
14
The longest even string that can be obtained is akasakaakasaka, whose length is .