Given an array A of length N, find the number of non empty sub-arrays such that sum of all the elements in the sub-array is a palindrome. In other words, you have to find number of pairs (i,j) such that ∑jx=iAx is a palindrome where (1≤i≤j≤N).
Input Format:
First line contains an integer, N (1≤N≤5∗105). Second line contains N space separated integers, Ai (1≤Ai≤2∗106), elements of the array A. The sum of all the elements in the array is in the range [1,2∗106].
Output Format:
Print an integer, number of non empty sub-arrays such that sum of all the elements in the sub-array is a palindrome.
The 3 sub-arrays are (10,1), 1 and 3.