문제
You are given N rectangles, which are centered in the center of the Cartesian coordinate system and their sides are parallel to the coordinate axes. Each rectangle is uniquely identified with its width (along the x-axis) and height (along the y-axis). The lower image depicts the first sample test. Mirko has coloured each rectangle in a certain color and now wants to know the area of the coloured part of the paper. In other words, he wants to know the number of unit squares that belong to at least one rectangle.
입력
The first line of input contains the integer N (1 ≤ N ≤ 1 000 000), the number of rectangles. Each of the following N lines contains even integers X and Y (2 ≤ X, Y ≤ ), dimensions (width and height, respectively) of the corresponding rectangles.
출력
The first and only line of output must contain the required area.
채점
In test cases worth 40% of total points, all numbers from the input will be smaller than 3333. In test cases worth 50% of total points, not a single rectangle will be located strictly within another rectangle.
예제 입력 1
3
8 2
4 4
2 6
예제 출력 1
28
예제 입력 2
5
2 10
4 4
2 2
8 8
6 6
예제 출력 2
68
코드를 제출하려면 로그인이 필요합니다.
로그인