Pattern Matchers have been designed for various sorts of patterns. Mr.
HKP likes to observe patterns in numbers. After completing his extensive
research on the squares of numbers, he has moved on to cubes. Now he
wants to know all numbers whose cube ends in .
Given a number , help Mr. HKP find the
number larger than
whose cube ends in
.
Input Specification
The first line of the input contains an integer , the number of
test cases.
test cases follow.
Each test case consists of a single line containing a single integer
.
Output Specification
For each test case, output a single integer which denotes the number
larger than
whose cube ends in
. The result will be less than
.
Sample Input
1
1
Sample Output
192
Comments
try to find a pattern in the cubes
first 2: 192, 442
Should we not ask why it is called "Triple Fat Ladies"?
Check below comments
What does the name of this question have to do with the actual question
888 looks sort of like 3 fat ladies if you squint hard enough
thic ladies 88888888888888888888
The explanation of this one was a little bit vague, so this may help you if you are stuck:
The first number is the NUMBER OF INPUTS, each of which is then processed individually. I initially started trying to do x number of items starting from 1.
A sample output with more than 1 test case would look like this:
INPUTS: 3 1 900 10000
OUTPUTS: 192 942 10192
Anyone know why im getting WA on 4 numbers? It's not giving i^3 ends in 888 for some reason.
you might need to use type long instead of int(at least in java) because the numbers get quite big for some test cases