Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
School reading contest
North Tirana Primary school is having a reading
contest among students. A total point is
calculated for every student who fulfills the
minimum requirements from 4 courses. There
is also maximum point (m) that students can get.
Weekly, every student has to fulfill the minimum pages
from the four defined courses. If a student fulfills
the minimum condition from all four courses, then
he gets 5, 5, 4, 4 points respectively for every extra
page that he reads.
Question: Write a program that is
going to read (n) student information and find out
the number of students who get the maximum points.
Input specification
In the beginning, you will be given two integers:
the number of students (n) and maximum points
that a student can get (m) where
0 ≤ n ≤ 1000, 10 ≤ m ≤ 1000.
In the second line you will be given the limits
of 4 courses. Then, in each of the following n
lines you will be given 4 numbers
which are between 0 and 500.
Output specification
One integer number: the number of students who
has taken at least m points.
Sample Input I
4 200
25 25 30 40
50 0 20 60
40 50 50 60
30 25 40 50
25 35 50 60
|
Sample Output I
2
|
Explanation: There are 4 students
and maximum points is 200.
- The first student has read less pages from the
second and third lessons: 0 points
- The 2nd and the 4th students have fulfilled the
minimum requirements from all lessons and get the
max points: 200
- The 3rd student has fulfilled the minimum
requirements and has got 105 points
Для отправки решений необходимо выполнить вход.
|