Submit | All submissions | Best solutions | Back to list |
SAMER08F - Feynman |
Richard Phillips Feynman was a well known American physicist and a recipient of the Nobel Prize in Physics. He worked in theoretical physics and also pioneered the field of quantum computing. He visited South America for ten months, giving lectures and enjoying life in the tropics. He is also known for his books "Surely You're Joking, Mr. Feynman!" and "What Do You Care What Other People Think?", which include some of his adventures below the equator.
His life-long addiction was solving and making puzzles, locks, and cyphers. Recently, an old farmer in South America, who was a host to the young physicist in 1949, found some papers and notes that is believed to have belonged to Feynman. Among notes about mesons and electromagnetism, there was a napkin where he wrote a simple puzzle: "how many different squares are there in a grid of N ×N squares?".
In the same napkin there was a drawing which is reproduced below, showing that, for N=2, the answer is 5.
Input
The input contains several test cases. Each test case is composed of a single line, containing only one integer N, representing the number of squares in each side of the grid (1 ≤ N ≤ 100).
The end of input is indicated by a line containing only one zero.
Output
For each test case in the input, your program must print a single line, containing the number of different squares for the corresponding input.
Example
Input: 2 1 8 0 Output: 5 1 204
Added by: | Diego Satoba |
Date: | 2008-11-23 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | ASM64 C C++ 4.3.2 CPP FORTRAN JAVA PAS-GPC PAS-FPC |
Resource: | South American Regional Contests 2008 |
hide comments
|
||||||||||||||
2013-05-15 14:27:29 Rohit Retnakaran
easy one... |
||||||||||||||
2013-03-28 13:16:03 ram kashyap
accepted in first attempt:) |
||||||||||||||
2013-02-19 12:04:05 Sivaraman Nagarajan
if N=4, there are 4 3x3, why is it said 1 by someone |
||||||||||||||
2013-01-20 10:57:44 ruslion
As for me I disagree with official solution. Let's assume N=4. 4^2+1(there is only 1 square 3x3 can fit into square 4x4) + 2^2 + 1^1=22 Thus the result is different. Last edit: 2013-01-20 10:58:34 |
||||||||||||||
2012-12-21 20:03:33 dpk
where 0 be printed and when ..how ? |
||||||||||||||
2012-12-11 04:30:06 arijit pande
Simple |
||||||||||||||
2012-12-10 19:43:42 James Waldby
In languages, please enable Python too |
||||||||||||||
2012-10-22 03:38:47 xavier
please allow this to be done using c# |
||||||||||||||
2012-10-07 02:07:28 Codex
can some one help me to find out why my code is giving wrong answer. EDIT: Do not post code. As to your question: For one thing, your code has extraneous usage print statements. The judge is considering these as part of your answer. If you really want to print these statements, print to stderr instead. Last edit: 2012-11-19 06:42:07 |