시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 512 MB88715882.857%

문제

The University of America is having an integrity issue. It turns out that grades in many of the science classes are not being based on any graded work but on such things as attendance, grooming habits and any snacks the students bring with them. The administration has decided to crack down on this. First, they confiscated all of the snacks. Then they insisted that all grades in science classes must be on graded work in four categories: labs, homeworks, projects and exams. They don’t care what percentage of the final grade is assigned to each of these as long as the total percentage assigned is 100%.

The professors at UA have grudgingly agreed to start grading their assignments, but they balk at the task of having to calculate final grades as well. They are asking you to write a program to calculate a student’s final grade. They will provide you with the following information: first, the percentage of each of the four categories; second, a list of (grudgingly) graded assignments each of which fits into one of the categories. Using this, they want you to calculate a final integer percentage grade.

For example, suppose the assigned percentages are labs - 20, homeworks - 20, projects - 25 and exams - 35 and the list of graded assignments is the following:

  • Lab 1: 15/20
  • Hw 1: 65/70
  • Hw 2: 27/35
  • Exam 1: 88/100
  • Proj 1: 50/50
  • Hw 3: 61/65
  • Exam 2: 79/100
  • Lab 2: 17/20
  • Hw 4: 51/60
  • Exam 3: 141/150

To calculate the final grade you first total up the fraction of points achieved in each category. For labs it’s 32/40 (there were two assignments each worth 20 and the student got a 15 on the first and a 17 on the second for a total of 32 points); for homeworks it’s 204/230; for projects it’s 50/50 and for exams it’s 308/350. You then multiply each of these fractions by the percentage assigned to each category: 20(32/40) + 20(204/230) + 25(50/50) + 35(308/350) = 89.539. Finally you truncate this to get the final grade of 89. Then you sit back and eat all the snacks you no longer need to bring to class.

입력

Input starts with five positive integers l h p e n, where the first four values are the percentages for labs, homeworks, projects and exams, respectively (always totaling to 100), and n (4 ≤ n ≤ 200) is the number of graded assignments. Following this are n lines each of the form cat i: r/s, where cat is either Lab, Hw, Proj or Exam, i is a positive integer, r is the number of points achieved for an assignment and s is the total possible points for the assignment. In each of these lines s is positive and 0 ≤ r ≤ s ≤ 1 000. There will always be at least one assignment in each of the four categories.

출력

Output the final truncated percentage grade.

예제 입력 1

20 20 25 35 10
Lab 1: 15/20
Hw 1: 65/70
Hw 2: 27/35
Exam 1: 88/100
Proj 1: 50/50
Hw 3: 61/65
Exam 2: 79/100
Lab 2: 17/20
Hw 4: 51/60
Exam 3: 141/150

예제 출력 1

89

예제 입력 2

25 25 25 25 4
Exam 1: 100/100
Lab 2: 30/30
Hw 3: 50/50
Proj 4: 60/60

예제 출력 2

100