问题3779--The Midpoint of A Segment

3779: The Midpoint of A Segment

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Qi Ge likes to solve computation geometry problems. He writes n points on the paper, but he wants to find the number of different groups (A,B,C) such that point B is the middle of segment AC or CA. And segment AC,CA are considered to be the same. Your task is to calculate the number of such group.

输入

There are several test cases. The first line contains a single integer n (3<=n<=3000)-the number of points. Next n lines contain the points. The i-th line contains coordinates of the i-th point: two space-separated integers xi,yi (-1000<=xi,yi<=1000). It is guaranteed that all given points are different.

输出

Print the single number — the answer to the problem.

样例输入 Copy

3
1 1 
2 2
3 3
3
0 0
-1 0
0 1

样例输出 Copy

1
0

来源/分类

zby