#Lutece0349. The Two Note Rag
The Two Note Rag
Migrated from Lutece 349 The Two Note Rag
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
Since most computers are binary machines, both powers of two and problems that involve only two values are important to computer scientists. The following problem has to do with powers of two and the digits and .
Some powers of two as decimal values, such as
and
end in a string of digits consisting only of 's and 's ( for and for ). In fact, it can be proved that:
For every integer , there exists a power of such that uses only the digits and in its last digits.
This is shown a bit more clearly in the following table:
Your job is to write a program that will determine, for given , the smallest such that ends in a string of digits containing only 's and 's.
Input
The first line of the input contains a single decimal integer, , , the number of problem data sets to follow. Each data set consists of a single integer , , for which we want a power of ending in a string of 's and 's.
Output
For each data set, you should generate one line of output with the following values: The data set number as a decimal integer (start counting at one), a space, the input value , another space, and the smallest value for which ends in a string of 's and 's.
Samples
6
1
2
4
5
7
15
1 1 1
2 2 9
3 4 89
4 5 589
5 7 3089
6 15 11687815589
Resources
Greater New York 2008