#ABC112C. Pyramid
Pyramid
题目描述
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.
在斯努克古国有一座金字塔,用来加强 AtCoder 公司总裁高桥的权威。金字塔的中心坐标为 ,高度为 。坐标 的高度为 。
探险家青木进行了一次调查,以确定这座金字塔的中心坐标和高度。结果,他获得了以下信息:
- 是介于 和 (含)之间的整数, 是不小于 的整数。
- 此外,他还获得了 条信息。其中 条是:"点 的高度是 "。
这足以确定金字塔的中心坐标和高度。根据上面的线索找出这些值。
输入格式
输入内容按以下格式标准输入:
输出格式
将代表金字塔中心坐标和高度的值 和 打印在一行中,中间留出空格。
样例 #1
样例输入 #1
4
2 3 5
2 1 5
1 2 5
3 2 5
样例输出 #1
2 2 6
样例 #2
样例输入 #2
2
0 0 100
1 1 98
样例输出 #2
0 0 100
样例 #3
样例输入 #3
3
99 1 191
100 1 192
99 0 192
样例输出 #3
100 0 193
说明
数据规模与约定
$N$
$x_1$ $y_1$ $h_1$
$x_2$ $y_2$ $h_2$
$x_3$ $y_3$ $h_3$
$:$
$x_N$ $y_N$ $h_N$
样例 解释
在这种情况下,可以确定中心坐标和高度分别为 和 。
样例 解释
在这种情况下,可以确定中心坐标和高度分别为 和 。
请注意,已知 和 是介于 和 之间的整数。
样例 解释
在这种情况下,可以确定中心坐标和高度分别为 和 。