![]() |
||||||||||
|
||||||||||
KnightmareTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2473 Accepted Submission(s): 1021 Problem Description A knight jumps around an infinite chessboard. The chessboard is an unexplored territory. In the spirit of explorers, whoever stands on a square for the first time claims the ownership of this square. The knight initially owns the square he stands, and jumps $N$ times before he gets bored. Recall that a knight can jump in 8 directions. Each direction consists of two squares forward and then one squaure sidways. ![]() After $N$ jumps, how many squares can possibly be claimed as territory of the knight? As $N$ can be really large, this becomes a nightmare to the knight who is not very good at math. Can you help to answer this question? Input The first line of the input gives the number of test cases, $T$. $T$ test cases follow. Each test case contains only one number $N$, indicating how many times the knight jumps. $1 \leq T \leq 10^5$ $0 \leq N \leq 10^9$ Output For each test case, output one line containing “Case #x: y”, where $x$ is the test case number (starting from 1) and $y$ is the number of squares that can possibly be claimed by the knight. Sample Input
Sample Output
Source | ||||||||||
|