Triangles (Bronze)
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
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 maximum area of a pasture that Farmer John can form? It is guaranteed that at least one valid triangular pasture exists.
Input
The first line contains the integer . Each of the next lines contains two integers and , each in the range inclusive, describing the location of a fence post.
Output
As the area itself is not necessarily an integer, output two times the maximum area of a valid triangle formed by the fence posts.
Examples
Input #1
Answer #1
Submissions 241
Acceptance rate 41%