Pro.ID21534 TitleAlien Communicating Machines Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21534 AC0 Submit0 Ratio- 时间&空间限制描述Aliens on the planet Hex have sixteen fingers. As a result, they have developed a system of writing numbers with sixteen digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, in ascending order). Like the decimal system that we use, a number is written as a sequence of digits, and the value of a number is determined by the following rules:
Still other planets have other aliens with different numbers of fingers. These aliens use the same rules for writing numbers, but each uses a different base. You have the important job of promoting universal peace by improving communication among all of these aliens. Specifically, you are to write a program that translates numbers written by one alien into numbers that can be understood by a different alien. 输入The first line of input contains a single integer, the number of test cases to follow. Each test case is a single line containing three numbers x, y, and z. Both x and y are written in decimal, and are the bases used by the two aliens. Each is at least two and at most thirty-six. The number z is written in base x, using the letters A through Z as the digits with value 10 through 35. The number z will be no greater than four billion. 输出Description Aliens on the planet Hex have sixteen fingers. As a result, they have developed a system of writing numbers with sixteen digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, in ascending order). Like the decimal system that we use, a number is written as a sequence of digits, and the value of a number is determined by the following rules:
Still other planets have other aliens with different numbers of fingers. These aliens use the same rules for writing numbers, but each uses a different base. You have the important job of promoting universal peace by improving communication among all of these aliens. Specifically, you are to write a program that translates numbers written by one alien into numbers that can be understood by a different alien. Input The first line of input contains a single integer, the number of test cases to follow. Each test case is a single line containing three numbers x, y, and z. Both x and y are written in decimal, and are the bases used by the two aliens. Each is at least two and at most thirty-six. The number z is written in base x, using the letters A through Z as the digits with value 10 through 35. The number z will be no greater than four billion. Output For each line of input, output a line containing a single number, equal in value to z, but written in base y. Sample Input 1 Sample Output 17 Source 样例输入1 样例输出17 作者 |