100 atcoder#ABC112C. [ABC112C] Pyramid
[ABC112C] Pyramid
Score: points
Problem Statement
In the Ancient Kingdom of Snuke, there was a pyramid to strengthen the authority of Takahashi, the president of AtCoder Inc. The pyramid had center coordinates and height . The altitude of coordinates is .
Aoki, an explorer, conducted a survey to identify the center coordinates and height of this pyramid. As a result, he obtained the following information:
- was integers between and (inclusive), and was an integer not less than .
- Additionally, he obtained pieces of information. The -th of them is: "the altitude of point is ."
This was enough to identify the center coordinates and the height of the pyramid. Find these values with the clues above.
Constraints
- is an integer between and (inclusive).
- and are integers between and (inclusive).
- is an integer between and (inclusive).
- The coordinates $(x_1, y_1), (x_2, y_2), (x_3, y_3), ..., (x_N, y_N)$ are all different.
- The center coordinates and the height of the pyramid can be uniquely identified.
Input
Input is given from Standard Input in the following format:
Output
Print values and representing the center coordinates and the height of the pyramid in one line, with spaces in between.
4
2 3 5
2 1 5
1 2 5
3 2 5
2 2 6
In this case, the center coordinates and the height can be identified as and .
2
0 0 100
1 1 98
0 0 100
In this case, the center coordinates and the height can be identified as and . Note that and are known to be integers between and .
3
99 1 191
100 1 192
99 0 192
100 0 193
In this case, the center coordinates and the height can be identified as and .