시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB76342537.879%

문제

You would like to mail some origami you have made to your mom.

The price of mailing is dependent on the area of the envelope used to mail it: the smaller the envelope area, the less cost to ship. You cannot fold the origami shape to make it smaller. Of course, the envelope you are shipping the origami in must be rectangular.

Consider the vertices which represent the points along the boundary of the paper in order, such that the edge of the paper may fold over itself. Given the verticies describing the origami shape, what is the area of the smallest envelope that you can use to mail the origami?

입력

The first line contains the integer N (3 ≤ N ≤ 100 000) which is the number of verticies describing your origami. The next N lines contain two integers, x y, the x-coordinate and y-coordinate of that particular vertex (0 ≤ x ≤ 10 000 000; 0 ≤ y ≤ 10 000 000). You should assume all verticies are distinct, and that there is no line which contains all verticies.

출력

Output the area of the smallest envelope that will contain the origami, rounded to the nearest integer. You can assume that no test case will have the area of the smallest envelope containing the given vertices have a fractional part between 0.49 and 0.51.

예제 입력 1

6
4 9
8 13
8 9
0 13
4 0
0 3

예제 출력 1

104