#Lutece0379. Integer’s Weight
Integer’s Weight
Migrated from Lutece 379 Integer’s Weight
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
For a positive integer, we define its weight as follows:
First we denote it in base as , with the most significant bit at the leftmost position. The weight of the integer is the number of pairs , where , and . For example, 10
( base) = 1010
( base), so the weight of is .
In this problem, we will give you some positive integers’ weights, and for every weight, you should find the smallest positive integer whose weight is equal to it.
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Every test case is a single integer (), indicates the weight of a positive integer.
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . Then output the answer. As the answer may be very large, you only need to tell me the remainder while it divides . See sample for more details.
Samples
4
1
2
3
4
Case #1: 2
Case #2: 4
Case #3: 8
Case #4: 12
Resources
The 9th UESTC Programming Contest Final