#ABC166E. [ABC166E] This Message Will Self-Destruct in 5s

[ABC166E] This Message Will Self-Destruct in 5s

Score: 500500 points

Problem Statement

You are the top spy of AtCoder Kingdom. To prevent the stolen secret from being handed to AlDebaran Kingdom, you have sneaked into the party where the transaction happens.

There are NN attendees in the party, and they are given attendee numbers from 11 through NN. The height of Attendee ii is AiA_i.

According to an examination beforehand, you know that a pair of attendees satisfying the condition below will make the transaction.

  • The absolute difference of their attendee numbers is equal to the sum of their heights.

There are N(N1)2\frac{N(N-1)}{2} ways to choose two from the NN attendees and make a pair. Among them, how many satisfy the condition above?

P.S.: We cannot let you know the secret.

Constraints

  • All values in input are integers.
  • 2N2×1052 \leq N \leq 2 \times 10^5
  • 1Ai109 (1iN)1 \leq A_i \leq 10^9\ (1 \leq i \leq N)

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 \dots ANA_N

Output

Print the number of pairs satisfying the condition.

6
2 3 3 1 3 1
3
  • A1+A4=3A_1 + A_4 = 3, so the pair of Attendee 11 and 44 satisfy the condition.
  • A2+A6=4A_2 + A_6 = 4, so the pair of Attendee 22 and 66 satisfy the condition.
  • A4+A6=2A_4 + A_6 = 2, so the pair of Attendee 44 and 66 satisfy the condition.

No other pair satisfies the condition, so you should print 33.

6
5 2 4 2 8 8
0

No pair satisfies the condition, so you should print 00.

32
3 1 4 1 5 9 2 6 5 3 5 8 9 7 9 3 2 3 8 4 6 2 6 4 3 3 8 3 2 7 9 5
22