#ABC166E. This Message Will Self-Destruct in 5s
This Message Will Self-Destruct in 5s
题目描述
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 attendees in the party, and they are given attendee numbers from through . The height of Attendee is .
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 ways to choose two from the attendees and make a pair. Among them, how many satisfy the condition above?
P.S.: We cannot let you know the secret.
你是 AtCoder 王国的高级间谍。为了防止被窃取的机密被交给 AlDebaran 王国,你潜入了交易会现场。
派对上有 名与会者,他们的与会者编号从 到 。与会者 的身高是 。
根据事先的检查,可以知道满足以下条件的一对与会者将进行交易。
- 他们的出席者编号的绝对差等于他们的身高之和。
有 种方法可以从 名与会者中选出两人并组成一对。其中有多少人满足上述条件?
附注:我们不能让你知道这个秘密。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的配对数。
样例 #1
样例输入 #1
6
2 3 3 1 3 1
样例输出 #1
3
样例 #2
样例输入 #2
6
5 2 4 2 8 8
样例输出 #2
0
样例 #3
样例输入 #3
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
样例输出 #3
22
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
- ,所以出席者 和 这一对满足条件。
- ,所以 和 这对出席者满足条件。
- ,所以 和 这对出席者满足条件。
没有其他一对满足条件,因此应该打印 。
样例 解释
没有一对满足条件,因此应该打印 。