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-02-26 20:10:32 Ryszard
Please if anyone can help! My program works for the test cases and any further figures I've tried. I have checked formatting of "No Number". I have the (0,0) case and n<10000 sorted. Still getting WA. Are there any other snags I might have run into, please?? Written in Java with println for outputs and a scanner for inputs. New to this site but was ok with previous tutorial challenges. Last edit: 2015-02-26 20:11:43 |
||||||||||||||
2015-02-20 12:34:46 Bozidar
Instead of "No Number", i printed "No number.", and that costed me WA... Rly.... Last edit: 2015-02-20 12:35:02 |
||||||||||||||
2015-02-04 16:03:46 Murat TOPAK
if/ else if/ else... nothing more. |
||||||||||||||
2015-01-22 20:58:48 ANUJ RATHORE
silly mistake cost me a wrong answer :p |
||||||||||||||
2015-01-11 13:46:06 Ketan Sethi
Hi, I got Accepted...I am also a beginner..i tried several time and then got Accepted Test Case: 1 7 7 output should be 13 and if input value is greater than 10000 then it shouldn't give reults. Hope this will help!! |
||||||||||||||
2015-01-10 01:55:03 Raj Kumar Chauhan
wth man why i am getting wrong answer everytime? i copied No Number from here, everything is fine in codeblocks, but dont know whats wrong here?? |
||||||||||||||
2014-09-30 07:57:13 ssk
check out the space between No and Number... caused me a W.A |
||||||||||||||
2014-08-24 00:10:34 Rajat (1307086)
Easy problem..... A silly mistake caused me a WA |
||||||||||||||
2014-08-22 00:36:39 surayans tiwari(http://bit.ly/1EPzcpv)
nice one |
||||||||||||||
2014-07-22 21:42:36 wake up sid !!!!
even strings should be careful |