#Lutece0063. A Simple Game
A Simple Game
Migrated from Lutece 63 A Simple Game
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Alice likes to play games. One day she meets such a game. There are *
switches arranged in an *
array. Pressing a switch would change its state, from off
to on
or from on
to off
. In addition, if a switch at row r and column c is pressed, then all switches with coordinate ( *
, *
) will change state, with integer . Initially all switches are off
.
For example, in the picture above, white buttons represent switches turned off
and colored ones represent switches turned on
. Initially all buttons are white. If the button at (,) is pressed, then buttons at (,), (,) will change state(represented with orange color). And if one presses the button (,), buttons at (,) and (,) will change from off
to on
(represented with gray color).
The goal of the game is to turn on
all the switches (i.e. when you finish the game, all the switches must be at the state of on
) and the player must do that with as few presses as possible. Now Alice would like your help.
Input
The first line of input file is an integer , the number of test cases. lines follow, each contain an integer , the dimension of the array in one game.
Output
Output consists of T lines. Each line contains an integer, the minimum number of presses for the corresponding test case.
Samples
2
2
3
3
7
Note
For test case , press (,) (,) (,). For test case , press (,) (,) (,) (,) (,) (,) (,).
Resources
The 5th UESTC Programming Contest Preliminary