CCC '96 S4 - When in Rome

View as PDF

Submit solution

Points: 10
Time limit: 1.0s
Memory limit: 256M

Problem type

If the Roman Empire had not fallen, then Rome would surely have discovered electricity and used electronic calculators; however, the Romans used Roman Numerals! Your task is to implement a simple Roman Calculator which accepts two Roman Numerals and outputs the sum in Roman Numerals. You may assume that numbers greater than 1000 will not occur in the input. Output numbers greater than 1000 are illegal and should generate the message CONCORDIA CUM VERITATE (In Harmony with Truth).

The input consists of a number, indicating the number of test cases, followed by this many test cases. Each test case consists of a single line with two numbers in Roman Numerals separated by a + along with an = at the end. There are no separating spaces.

For each test case, the output is a copy of the input with the Roman Numeral that represents the sum on a separate line.

Roman Research

The Roman Numerals used by the Romans evolved over many years, and so there are some variations in the way they are written. We will use the following definitions:

  1. The following symbols are used: I for 1, V for 5, X for 10, L for 50, C for 100, D for 500, and M for 1000.
  2. Numbers are formed by writing symbols from 1. from left to right, as a sum, each time using the symbol for the largest possible value. The symbols M, C, X, or I may be used at most three times in succession. Only if this rule would be violated, you can use the following rule:
    • When a single I immediately precedes a V or X, it is subtracted. When a single X immediately precedes an L or C, it is subtracted. When a single C immediately precedes a D or M, it is subtracted.

For example: II = 2; IX = 9; CXIII = 113; LIV = 54; XXXVIII = 38; XCIX = 99.

Sample Input

3
VII+II=
XXIX+X=
M+I=

Sample Output

VII+II=IX
XXIX+X=XXXIX
M+I=CONCORDIA CUM VERITATE

Comments


  • 6
    cjord1  commented on March 23, 2022, 6:21 p.m.

    this question is weirdly fun


  • 4
    Ninjaclasher  commented on June 13, 2017, 1:12 a.m.

    For example, if it was IIX, would that be 10, or 12? I find the problem statement about this section a bit confusing.


    • 10
      Kirito  commented on June 13, 2017, 2:51 a.m.

      IIX is not a valid Roman Numeral.


      • 3
        Dordor1218  commented on March 18, 2018, 2:31 p.m. edited

        I'm still kind of confused why it isn't a roman numeral? Update: never mind i found out why


        • 0
          noirsnow  commented on Oct. 1, 2020, 7:56 p.m.

          wait, why???


          • 4
            Kirito  commented on Oct. 2, 2020, 1:56 a.m. edited

            When a single I immediately precedes a V or X, it is subtracted. When a single X immediately precedes an L or C, it is subtracted. When a single C immediately precedes a D or M, it is subtracted.

            (Emphasis mine.)

            You cannot have two Is preceding an X.


  • 16
    PaulOlteanu  commented on July 6, 2015, 1:36 a.m. edit 4

    DMOJ output is different from my local machine.

    Screenshot

    Have I hardcoded too much for my submission to be illegitimate?