#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";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |