|
||||||||||
Geek Challenge [SKRZAT] (Base Minus Two)Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 605 Accepted Submission(s): 219 Problem Description Problem F: Geek Challenge [SKRZAT] (Base Minus Two) Geek Challenge [SKRZAT] is an old, old game from Poland that uses a game console with two buttons plus a joy stick. As is true to its name, the game communicates in binary, so that one button represents a zero and the other a one. Even more true to its name, the game chooses to communicate so that the base of the number system is minus two, not plus two, so weˇŻll call this representation ˇ°Weird Binaryˇ±. Thus the bit positions label the powers of minus two, as seen in the following five-bit tables: Numbers are presented on the screen in Weird Binary, and then numbers are accepted in response from the console as a stream of zeroes and ones, terminated by a five-second pause. You are writing a computer program to support the novice geek in playing the game by translating numbers between decimal and Weird Binary. Input The first line in the file gives the number of problems being posed without any white space. Following are that many lines. Each line will either be a conversion into Weird Binary or out of Weird Binary: the letter "b" indicates that the rest of the line is written in Weird Binary and needs to be converted to decimal; the letter "d" indicates that the rest of the line is written in decimal and needs to be converted to Weird Binary. The input data are in the range to fit within a 15-bit Weird Binary number, which represents the decimal number range ¨C10922 to 21845, inclusive. Output For each conversion problem, show the type of problem, its input string, and the converted result in the format shown below, replicating even the spacing exactly as shown. Leading zeroes are not allowed. Sample Input
Sample Output
Source | ||||||||||
|