Rectangle
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
On a sheet of paper, devided into square cells, K rectangles are drawn. Their sides lie on grid lines, and the vertices have integer coordinates. Find the rectangle of minimum area that encloses all the given rectangles and which sides are parallel to the grid lines.
Input
The first line contains integer K (1 ≤ K ≤ 100). Each of the next K lines contains four integers – the coordinates of two opposite vertices of rectangle (the values are not greater than 10^5 by absolute value).
Output
The area of the minimum rectangle.
Examples
Input #1
Answer #1
Submissions 763
Acceptance rate 33%