练习专区

今天的一小步就是明天的一大步
Problem 1202 点的位置
Accepted: 1   Total Submit: 36
Time Limit: 1000ms   Memory Limit: 30720KB
Description
直线y=2x把平面分成三个部分:直线上、直线上方、直线下方。现在给你n个点,请你编程统计并输出位于各部分的点。
Input
输入有若干行(不超过100行),每行两个数,表示一个点的坐标。
Output
输出各部分的点,格式见样例。
Sample Input
1 1
0 0
1 -2
2 6
Sample Output
Below the line:(1,1) (1,-2)
On the line:(0,0)
Above the line:(2,6)
Hint
提交     返回