HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Repetition (Loops) > problem:


50295 - Weighted Average

Guest
• Review clarifications (1)

Volume problems

• 090. 50456 - nth Digit of a Number
• 110. 50288 - Even numbers in even...
• 115. 50425 - Calculating Weekly Pay
• 120. 50426 - Calculating Sales
• 50312 - Sales Bar Chart
• 50313 - Pattern Displays
• 50316 - Population Bar Chart
• 50336 - Buying Carpets
• 50295 - Weighted Average
• 003. 50358 - Series of Odd Numbers
• 005. 50297 - Divisible By Five
• 012. 50589 - The Number of Eggs Sold
• 030. 50584 - Total invoice amount
• 050. 50450 - Last Appereance of a ...
• 060. 50362 - Pythagorean Numbers
• 060. Problem 2
• 065. 50394 - Water Bills

Feedback

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

Time limit 4000/7000/7000/7000 ms. Memory limit 65000/65000/65000/65000 Kb.
Prepared by Ibrahim Mesecan.

Weighted Average

Sometimes, the schools use weighted average instead of calculating the standard average. In weighted average the course averages are weighted according to different criteria; like the number of hours in a week. If a lesson has one hour per week and student takes very low grade from that, it will not effect the general average much.

Weighted average is mostly calculated like this:

  • All course averages are multiplied (weighted) with the number of course hours per week
  • The results are summed
  • The sum is divided by the number of total course hours per week

Write a program that is going to read the course averages and the number of hours per week from a file and then calculate the weighted average.

Input specification
The first line has a number (n) which shows the number of lessons where 1 ≤ n ≤ 10. The following n lines contain two integer numbers each (courseAve and numHours), where 1 ≤ courseAve ≤ 10 and 1 ≤ numHours ≤ 5.

Output specification
Show one floating number with two digits precision that represent the weighted average of the student.

Sample Input:
  3
  10 4
  10 3
  6 1

Sample Output:
  9.5

Output Explanation:
   ave = ((10 * 4) + (10 * 3) + (6 * 1)) / 8 = 9.5


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

www.contester.ru