문제
Farmer John would like to create a triangular pasture for his cows.
There are fence posts () at distinct points on the 2D map of his farm. He can choose three of them to form the vertices of the triangular pasture as long as one of the sides of the triangle is parallel to the -axis and another side is parallel to the -axis.
What is the sum of the areas of all possible pastures that FJ can form?
SCORING: Test case 2 satisfies Test cases 3-4 satisfy Test cases 5-10 satisfy no additional constraints.
입력
The first line contains
Each of the next lines contains two integers and , each in the range inclusive, describing the location of a fence post.
출력
As the sum of areas is not necessarily be an integer and may be very large, output the remainder when two times the sum of areas is taken modulo .
예제 입력 1
4
0 0
0 1
1 0
1 2
예제 출력 1
3
코드를 제출하려면 로그인이 필요합니다.
로그인