COCI '06 Contest 2 #4 Sjecišta

View as PDF

Submit solution


Points: 7
Time limit: 0.6s
Memory limit: 32M

Problem types

Consider a convex polygon with N vertices, with the additional property that no three diagonals intersect in a single point. Find the number of intersections between pairs of diagonals in such a polygon.

The figure below shows one such polygon with 6 vertices.

Note: a polygon is convex if all of its interior angles are less than 180 degrees.

Input Specification

The first and only line of input contains a single integer N (3N100).

Output Specification

Output the number of intersections on a single line.

Sample Input 1

Copy
3

Sample Output 1

Copy
0

Sample Input 2

Copy
4

Sample Output 2

Copy
1

Sample Input 3

Copy
6

Sample Output 3

Copy
15

Comments

There are no comments at the moment.