BASE - Basically Speaking

no tags 

The Really Neato Calculator Company, Inc. has recently hired your team to help design their Super Neato Model I calculator. As a computer scientist you suggested to the company that it would be neato if this new calculator could convert among number bases. The company thought this was a stupendous idea and has asked your team to come up with the prototype program for doing base conversion. The project manager of the Super Neato Model I calculator has informed you that the calculator will have the following neato features:

  • It will have a 7-digital display.
  • Its buttons will include the capital letters A through F in addition to the digits 0 through 9.
  • It will support bases 2 through 16.
The input for your prototype program will consist of one base conversion per line. There will be three numbers per line. The first number will be the number in the base you are converting from. The second number is the base you are converting from. The third number is the base you are converting to. There will be one or more blanks surrounding (on either side of) the numbers. There are several lines of input and your program should continue to read until the end of file is reached.

The output will only be the converted number as it would appear on the display of the calculator. The number should be right justified in the 7-digit display. If the number is to large to appear on the display, then print ``ERROR'' (without the quotes) right justified in the display.

A sample input file is shown here:

1111000  2 10
1111000  2 16
2102101  3 10
2102101  3 15
  12312  4  2
     1A 15  2
1234567 10 16
   ABCD 16 15

The following output file should be produced from the above sample input:

    120
     78
   1765
    7CA
  ERROR
  11001
 12D687
   D071

hide comments
Bo MA: 2021-02-15 11:34:13

There is an illusion that the input is well formatted upon observing the sample input. Such as, the input base occupies 8th and 9th character and the output base occupies 11th and 12th character. I submitted code based on this assumption and got FPE. Then I changed to treat input as space separated value and got AC.

Last edit: 2021-02-15 11:34:52
nadstratosfer: 2017-07-19 04:06:16

Don't use I/O template that tries to get the number of cases from the first line. Costed me a bunch of REs and half an hour scratching my head.

kass_97: 2017-01-13 23:24:50

Just forgot to print a \n and WA.... :/ but enjoyed doing it, finally AC

aryanagal: 2016-07-09 08:48:45

"ERROR" and not "Error", use toUpperCase wherever required in java, this an easy problem, should've had more solutions

MAYANK NARULA: 2016-02-03 16:18:03

getting RUNTIME ERROR , and not able to figure out .in such an easy problem !!

Dushyant Singh: 2015-08-29 09:52:57

For those who are getting TLE replace while(scanf("%[^\n]s",a)!=EOF) to while(gets(a)).

SangKuan: 2015-08-17 15:44:51

easy with common lisp.c maybe hard

Pradd: 2015-04-07 18:53:36

Did it in Python..Python is awesome for small IO and string based tasks. And @pvkcse, thanks for the rjust tip. Saved me writing a lot of code..

pvkcse: 2014-12-26 18:56:15

Take care of output formatting...python rocks here...rjust(7) made my code to get AC in one go...!!!

:D: 2010-12-05 18:36:17

There is a faster intemediate base you can use. I'm sure you know witch one ;). Regardless of that, you should make it in time in C++. There maybe is some looping error in your program.


Added by:Wanderley Guimarăes
Date:2006-06-01
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:ACM Mid Central Regionals 1995