Programming contests

Magas szintű programozási nyelvek 1, egyéni verseny, 2015. április 12.

April 12, 2015 10:00 AM – April 12, 2015 3:00 PM

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 ciphers. 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 Specification

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 the input is indicated by a line containing only one zero.

Output Specification

For each test case in the input, your program must print a single line, containing the number of different squares for the corresponding input.

Sample Input

  1. 2
  2. 1
  3. 8
  4. 0
download as text file

Output for Sample Input

  1. 5
  2. 1
  3. 204
download as text file
University of Debrecen; Faculty of Informatics; v. 03/01/2019