HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Functions > problem:


062. 50390 - Total Salary Paid

Guest
• Review clarifications (4)

Volume problems

• 020. 50575 - Number of Prime num...
• 030. 50576 - Number of Perfect nu...
• 035. 50467 - Random Numbers
• 040. 50354 - Intersecting Rectangles
• 050. 50510 - What floor are they?
• 050. 50566 - Grade Point Average (...
• 060. 50727 - Fibonacci Numbers
• 061. 50733 - The Highest Average
• 062. 50390 - Total Salary Paid
• 066. 50523 - Total Tax to Pay
• 070. 50534 - Top Trading Company
• 076. 50289 - Monthly Allowance
• 080. 50347 - Selling Oranges
• 090. 50378 - Sum of the given digits
• 095. 50453 - The Cubic Difference
• 100. 50397 - The Number of Points ...
• 110. 50409 - Random Password Ge...

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.
Prepared by Ibrahim Mesecan.

Total Salary Paid

There are many people working in Mr. Uldedaj's factory. He calculates the weekly salaries according to the following criteria.

  • Up to 20 hours fixed salary: even if they work less than 20 hours they are paid for 20 hours
  • Up to 30 hours fixed rate per hours,
  • Between 31 and 35: 10% more than the fixed hourly rate
  • Between 36 and 40: 20% more than the fixed hourly rate
  • Between 41 and 45: 30% more than the fixed hourly rate
  • Above 45: No salary. That's, in a week, max 45 hours is paid.

Question:
Write a program that reads the working hours of the staff and calculates the total salary to be paid in that month.

Input specification
The first line of the input contains an integer: the number of people (n) where 0 ≤ n ≤ 10000. Then, the following n lines contain two numbers for every worker:

  • fixed hourly rate: a floating point number
  • and number of hours workded: an integer

Output specification
Show one floating point number with 2 digits precision after the floating point.

Sample Input I   
  5
  265 44
  280.7 47
  205 10
  260 21
  170 47
Sample Output I   
  43569.1

Explanation:
Total weekly salary of the workers: 43569.1

  1. 12375.5
  2. 13473.6
  3. 4100
  4. 5460
  5. 8160

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

www.contester.ru