Pairs of elements

2.6

21 votes
Problem

You are given an array of length N. You are required to count the number of (i,j) pairs where 1i<jN 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 

  • The first line contains the length of the array N. (1N105)
  • The second line contains N integers representing array elements. (1A[i]1012)

Output format

Print the number of pairs that satisfy the provided condition.     

Time Limit: 10
Memory Limit: 256
Source Limit:
Explanation

Pairs at indices : (1,2), (2,4), (1,5) satisfy the above condition.

Editor Image

?