Submit | All submissions | Best solutions | Back to list |
NSTEPS - Number Steps |
Starting from point (0,0) on a plane, we have written all non-negative integers 0, 1, 2, ... as shown in the figure. For example, 1, 2, and 3 has been written at points (1,1), (2,0), and (3, 1) respectively and this pattern has continued.
You are to write a program that reads the coordinates of a point (x, y), and writes the number (if any) that has been written at that point. (x, y) coordinates in the input are in the range 0...10000.
Input
The first line of the input is N, the number of test cases for this problem. In each of the N following lines, there is x, and y representing the coordinates (x, y) of a point.
Output
For each point in the input, write the number written at that point or write No Number if there is none.
Example
Input: 3 4 2 6 6 3 4 Output: 6 12 No Number
Added by: | Camilo Andrés Varela León |
Date: | 2006-11-25 |
Time limit: | 1.159s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO NODEJS PERL6 VB.NET |
Resource: | Asia - Tehran 2000 |
hide comments
|
||||||||||||||
2015-12-10 07:33:31
AC in first go after a very long time xD |
||||||||||||||
2015-12-10 07:33:31
AC in first go after a very long time xD |
||||||||||||||
2015-11-30 06:07:39
No points allotted for successful submission... Why does this happen?? |
||||||||||||||
2015-11-22 19:41:25 Timmy Jose
People should refrain from posting any ideas here on this page. The forum is meant to be used for that purpose. |
||||||||||||||
2015-11-03 07:19:24 ramesh bugatha
Even this program differentiating between endl and "\n" for newline. if you use "\n" it will accept, if not it won't. |
||||||||||||||
2015-10-20 10:10:18
This question is worth 0.01 points but even after successfully solving it my score remains 0 points.Why?????? |
||||||||||||||
2015-10-04 20:29:22
really very easy ,ac in one go!! |
||||||||||||||
2015-09-27 08:05:40 puntu
two cases. for a number only 2 choices, 1)y==x and 2)y+2==x. for x&y even, ans is (y+x) and for odd ans is (y+x-1). |
||||||||||||||
2015-09-27 08:03:56 puntu
time limit is too much |
||||||||||||||
2015-09-27 08:03:32 puntu
need an 1 if-else case. nothing more. |