SAMER08F - Feynman

no tags 

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.

subir imagenes

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

hide comments
Vadim Kiselev: 2021-12-31 06:26:17

Please, add Python 3...

akihisa: 2021-12-25 06:42:34

No problem is easy or tough, it's a relative term. If you get the logic, it's easy, if you don't, it's tough.
The point is to learn that particular problem topic if you don't get it or strengthen that particular problem topic if you got it.

mamad_urmu: 2021-08-11 13:59:29

I'm not going to tell the answer. but instead I'm going to tell u what i did.
pick a pen ( or pencil) and piece of paper . and write down the total squares for different N grid squares starting from 1 up to for example 5 or 6 . try to find a pattern in answers. I'm sure u will because it is easy.

sk128: 2021-04-06 09:23:52

Carefully see the input format. Very unique format.

Last edit: 2021-04-06 09:27:00
vivek_prime: 2021-01-27 13:27:04

ac in one go

saurabh666: 2020-08-22 02:37:37

Before posting, ensure you saw the input format correctly. Mine was wrong twice, then I saw the input format is different than the normal.

surajxd: 2020-07-15 11:57:01

summation of n square thats it.

sakshisarna: 2020-07-12 11:46:14

This AC gave me 3cm of rock hard erection!!

Last edit: 2020-07-12 15:46:12
tonystarkk: 2020-07-03 11:44:09

O(1) solution exists

memran: 2020-06-29 19:36:51

1*1+2*2+...n*n


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