You are given a palindromic string ss of length nn.
You have to count the number of indices ii (1≤i≤n)(1≤i≤n) such that the string after removing sisi from ss still remains a palindrome.
For example, consider ss = "aba"
A palindrome is a string that reads the same backward as forward. For example, "abba", "a", "fef" are palindromes whereas "codeforces", "acd", "xy" are not.
The input consists of multiple test cases. The first line of the input contains a single integer tt (1≤t≤103)(1≤t≤103) — the number of test cases. Desc
The first line of each testcase contains a single integer nn (2≤n≤105)(2≤n≤105) — the length of string ss.
The second line of each test case contains a string ss consisting of lowercase English letters. It is guaranteed that ss is a palindrome.
It is guaranteed that sum of nn over all test cases does not exceed 2⋅1052⋅105.
For each test case, output a single integer — the number of indices ii (1≤i≤n)(1≤i≤n) such that the string after removing sisi from ss still remains a palindrome.
3
3
aba
8
acaaaaca
2
dd
1
4
2
The first test case is described in the statement.
In the second test case, the indices ii that result in palindrome after removing sisi are 3,4,5,63,4,5,6. Hence the answer is 44.
In the third test case, removal of any of the indices results in "d" which is a palindrome. Hence the answer is 22.