#include<algorithm> #include<iostream> #include<string> #include<vector> usingnamespace std; string new_str(string& ostr){ string nstr = "^#"; int n = ostr.size(); for (int i = 0; i < n; i++) { nstr.push_back(ostr[i]); nstr.push_back('#'); } nstr.push_back('$'); return nstr; } intmain(){ string str; int id = 1; while (true) { cin >> str; if (str == "END") break; str = new_str(str); int c = 1, r = 0; int n = str.size(); vector<int> p(n); for (int i = 1; i < n; i++) { if (i >= c + r) { r = 0; while (str[i + r + 1] == str[i - r - 1]) r++; c = i; p[i] = r; } else { int mr = 2 * c - i; if (i + p[mr] < c + r) { p[i] = p[mr]; } else { int tr = c + r - i; while (str[i + tr + 1] == str[i - tr - 1]) tr++; p[i] = tr; c = i; r = tr; } } } cout << "Case " << id << ": " << *max_element(p.begin(), p.end()) << endl; id++; } }