Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register
Language:
Reverse Roman Notation
Time Limit: 1000MSMemory Limit: 10000K
Total Submissions: 764Accepted: 292

Description

Hermes Poseidon (HP) has produced a new calculator, the HP CXX, using the very latest in modern technology. It supports the four basic arithmetic operations on integer values from I to MMMMCMXCIX.
In this problem, you are simulating The HP CXX. Each line of input will be either a roman numeral representation of a positive integer (between I(1) and MMMMCMXCIX(4999)), which will then be pushed to the top of the virtual stack, or it will be an arithmetic operation (+ - * /) to be performed on the top two values of the stack. In addition, there is the = operation, which is a request to print the value of the top of the stack (in roman numerals, of course).
For the - operation, subtract the first number on the stack from the second. For /, divide the second number on the stack by the first. An attempt to divide by 0 should result in the error message "division by zero exception". When that happens, push the dividend (non-zero number) back onto the stack, but not the divisor (zero).
If an operation is requested, and there are insufficient numbers on the stack, print the error "stack underflow" and leave the stack unchanged. This applies to both the binary operations +-*/ and the print operation =.
If an attempt is made to print a number whose value is 0 or less, or whose value is greater than MMMMCMXCIX(4999), display the error message "out of range exception" and go on to the next line of input.

Roman Numerals
For those who are unfamiliar with Roman Numerals, here is a quick summary:
Each letter used in Roman numerals stands for a different number:

Roman Numeral Number
--------------------------
I 1
V 5
X 10
L 50
C 100
D 500
M 1000

A string of letters means that their values should be added together. For example, XXX = 10 + 10 + 10 = 30, and LXI = 50 + 10 + 1 = 61. If a smaller value is placed before a larger one,
we subtract instead of adding. For instance, IV = 5 − 1 = 4 and XC = 100 − 10 = 90.

  • Except for M, do not add more than three of the same letters together.
  • Subtract only powers of ten, such as I, X, or C. Writing VL for 45 is not allowed: write XLV instead.
  • Subtract only a single letter from a single numeral. Write VIII for 8, not IIX; 19 is XIX, not IXX.
  • Don't subtract a letter from another letter more than ten times greater. This means that you can only subtract I from V or X, and X from L or C, so MIM is illegal.

Input

Each input line consists of either:
  • A Roman numeral between I and MMMMCMXCIX, or
  • An arithmetic operation +, -, /, or *, or the print operator, =
    The input ends at the end-of-file.

Output

A line will be output:

  • For every print operation, print the value at the top of the stack, or
  • One of the error messages, on a line by itself:
    • division by zero exception
    • stack underflow
    • out of range exception

No other output should be produced

Sample Input

I
I
+
=
II
*
=
VIII
-
=

Sample Output

II
IV
out of range exception

Source

[Submit]   [Go Back]   [Status]   [Discuss]

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator