2770.Vanya and Triangles

Time Limit: 1s Memory Limit: 256MB

Vanya got bored and he painted n distinct points on the plane. After that he connected all the points pairwise and saw that as a result many triangles were formed with vertices in the painted points. He asks you to count the number of the formed triangles with the non-zero area.

Input Format(From the terminal/stdin)

The first line contains integer n (1 \le n \le 2000) - the number of the points painted on the plane.

Next n lines contain two integers each xi,yi (-100 \le xi,yi \le 100) - the coordinates of the i-th point. It is guaranteed that no two given points coincide.

Output Format(To the terminal/stdout)

In the first line print an integer - the number of triangles with the non-zero area among the painted points.

Sample Input 1

Copy
4
0 0
1 1
2 0
2 2
 \n
 · \n
 · \n
 · \n
 · \n

Sample Output 1

Copy
3
 \n

Sample Input 2

Copy
3
0 0
1 1
2 0
 \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
1
1 1
 \n
 · \n

Sample Output 3

Copy
0
 \n

Hints

Note to the first sample test. There are 3 triangles formed: (0,0)-(1,1)-(2,0); (0,0)-(2,2)-(2,0); (1,1)-(2,2)-(2,0).

Note to the second sample test. There is 1 triangle formed: (0,0)-(1,1)-(2,0).

Note to the third sample test. A single point doesn't form a single triangle.

Submit

请先 登录

© 2025 FAQs