#Lutece0606. Palindrome Again

Palindrome Again

Migrated from Lutece 606 Palindrome Again

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Palindrome really has many many properties which fascinated us a lot and arouse many interests.

Do you remember that last summer, the problem about longest palindrome in the inteval?

Too easy? Maybe you are tired of solving problem about palindrome on one string.

Here is your another challenge.

There are two strings, AA and BB, and an integer dd.

And you are to count the number of triples (i,j,k)(i,j,k). that satisfies A.substr(i,k)=B.substr(j,k)A.substr(i,k)=B.substr(j,k), 1istrlen(A)1\leq i\leq strlen(A), 1jstrlen(B)1\leq j\leq strlen(B), A.substr(i,k)A.substr(i,k) is a palindrome, kk is the length of the substring, kdk\geq d

A substring of a string TT is defined as:

T.substr(i,k)=TiTi+1Ti+k1T.substr(i, k)=T_iT_{i+1}\cdots T_{i+k-1}, 1ii+k1T1\leq i\leq i+k-1\leq |T|.

Input

The input file contains several cases, end by EOF. For each cases, the first line contains one integer dd, followed by two lines containing strings AA and BB, respectively.

1strlen(A),strlen(B)500001 \leq strlen(A), strlen(B) \leq 50000

1dmin{strlen(A),strlen(B)}1 \leq d \leq min\{strlen(A), strlen(B)\}

Characters of AA and BB are all lowercase letters.

Output

For each case, output an integer indicates the number of the triples (i,j,k)(i,j,k).

Samples

1
aba
aba
1
icpc
cicpc
2
myon
usagi
6
9
0

Note

In the first sample , the 66 triples are

1,1,11,1,1

1,3,11,3,1

2,2,12,2,1

3,1,13,1,1

3,3,13,3,1

1,1,31,1,3

respectively.

Resources

6th BUPT Programming Contest Final