You are given an array of length N. You are required to count the number of (i,j) pairs where 1⩽i<j⩽N such that the difference of the array elements on that indices is equal to the sum of the square of their indices.
That is the count of the number of pairs of (i,j) such that it satisfies this equation (A[j]−A[i]=i2+j2).
Input format
Output format
Print the number of pairs that satisfy the provided condition.
Pairs at indices : (1,2), (2,4), (1,5) satisfy the above condition.