NFURY - Training Land of Fury
S.H.I.E.L.D. is recruiting soldiers for the battle with Loki's army. Nick Fury has come to Manhattan to find a large area of land to be used for training purposes. He meets a popular landlord there who is a little foolish by nature.
He gives square pieces of land with integral sides and charges on the basis of number of pieces of land bought irrespective of how large a piece of land is. Fury has to buy exactly A square units of land. Help Fury by determining the minimum number of pieces that should be bought in order to minimize the expenditure.
Input
The first line of the input contains an integer T denoting the number of test cases. The first line of each test case contains a single integer A denoting the area that nick fury want to buy.
- 10 ≤ T ≤ 100000
- 1 ≤ A ≤ 1000
Output
For each test case print the minimum number of pieces that should be bought.
Example
Input: 4 1 2 3 10 Output: 1 2 3 2
Explanation
For the last test case 10 the answer will be 2. 10 can be expressed as sum of minimum two squares that is 10 = 32+12.
hide comments
AbK:
2014-01-14 06:30:14
Try This
|
|
I know nothing:
2014-01-04 06:29:40
plz check my solution why this is givinig wa all test case are working fine 10795903
|
|
Vipul Pandey:
2014-01-01 21:59:01
Just dp! |
|
Mauro Persano:
2013-11-17 06:29:36
The language restriction doesn't make any sense. Last edit: 2013-11-15 00:26:26 |
Added by: | BLANKRK |
Date: | 2013-11-14 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Code Weavers 2013 |