#Lutece0320. SZX sensei's lunatic base
SZX sensei's lunatic base
Migrated from Lutece 320 SZX sensei's lunatic base
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
Recently SZX sensei is addicted to encryption and wants to invent a new, strange and lunatic base. That is the every digit of a number is different! So given a key number of which the every digit indicates the base on every digit you can change the decimal number into the lunatic base and vice versa. For example the key number might be meaning that the base of first digit (from the right) is octal (八进制) and the second is senary (六进制) and the third is binary (二进制). See the sample to learn more.
In base 2345 | In decimal |
---|---|
1 | |
2 | |
10 | 5 |
11 | 6 |
14 | 9 |
21 | 11 |
33 | 18 |
Input
The first line of the input is a single number () indicating the number of test cases.The next lines might be either patten of the two from x y
and to x y
. is the key number of the encryption and every digit will be between and . The former means you should change the decimal number into lunatic base y while the latter means you should change the number in lunatic base to a decimal number. The length of and are no more than .
Output
For each test case, output one line. First ,output Case #C:
, where is the number of test case, from to . Then, output the number you've changed to.
Samples
4
from 11 2222
to 11 2222
from 11 2345
to 11 2345
Case #1: 1011
Case #2: 3
Case #3: 21
Case #4: 6
Resources
gongbaoa