HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Contests > CEN_114 Midterm A > problem:


7. 50449 - The biggest result

CEN_114 Midterm A

Start: May.14.2020 at 12:00:01 AM
Finish: May.31.2020 at 11:55:59 PM
The contest is finished!
• Contest scoreboard

Guest
• Review clarifications (3)

Contest problems

• 12. 50470 - Close Pairs - Revised
• 13. 50735 - Top M Products
• 14. 51094 - Passing the course
• 15. 50804 - Marathon
• 3. 50390 - Total Salary Paid
• 4. 50528 - Rock-Scissors-Paper
• 5. 51087 - Are they the same?
• 6. 51092 - Even and Odd
• 7. 50449 - The biggest result
• 8. 51146 - Popular Baby Names
• 9. 50499 - Table to Row

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

The biggest result

Question: Write a program that reads n arithmetic operations and then the program finds the biggest result.

Input specification
You will be given an integer in the first line: n, the number of operations where 1 ≤ n ≤ 10,000. Then, in the following n lines you are given two space separated numbers where they are integers between -2E4 and -2E4. Then, in the following n lines you will be given the operators. There are only 4 possible operations given: +, -, *, and /. Pay attention that division operator may produce floating point result.

Output specification
Do the given operations on the given numbers. Then show the biggest result. (Do not print in scientific format )

Sample Input I
3
3 4
-9 7
1 8
*
+
/
Sample Output I
12

Note: The results from the given operations:

  1. 3 * 4 = 12
  2. (-9) + 7 = -2
  3. 1 / 8 = 0.125
So, the biggest result is 12.



Для отправки решений необходимо выполнить вход.

www.contester.ru