This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#ifdef LOCAL
#define dbg(x) // cerr << "dgb: " << x << "\n";
#else
#define dbg(x)
#endif
#define int int_fast64_t
using namespace std;
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--) {
string s;
cin >> s;
dbg(s);
int res = 0;
int l = 0, r = (int)s.size() - 1;
while (l < r) {
dbg("l " << l << " r " << r);
int len = 1;
while (s[l] != s[r]) {
r--;
len++;
if (r == l) {
goto end;
}
}
dbg("len " << len);
dbg(s.substr(l, len));
dbg(s.substr(r, len));
if (s.substr(l, len) != s.substr(r, len)) {
goto end;
}
res += 2;
l += len;
r--;
}
end:
if (l <= r)
res++;
cout << res << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |