DMOPC '14 Contest 1 P3 - New Students

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 0.1s
Java 1.0s
Python 1.0s
Turing 1.0s
Memory limit: 64M

Author:
Problem type

It's almost time for mid-term marks and Mr. Sidhu, an excellent math teacher, wants to calculate the class average. Since Mr. Sidhu is such a high-performing teacher, many students (represented by S (1 \le S \le 100\,000)) have transferred into his math class (which initially had I (0 \le I \le 100\,000) students), bringing along their grades from their previous class.

The problem is that Mr. Sidhu wants to see how the class average is affected after each student transfers into his class one by one. Being the nice student you are, you have decided to write him a program that does exactly that.

Input Specification

The first line of input will contain I, the number of initial students in his class. This is then followed by I lines, with each representing the mark of every initial student (0 \le mark \le 1000).

The next line consists of S, which represents the number of students transferring into his class.

You may assume that their timetable changes have all been approved by the Guidance Department.

This is followed by S lines, with every one of them showing the mark the student had in his or her initial class.

Note that for 80% of the marks, the additional constraints will hold: (1 \le I, S \le 1000)

Output Specification

The output should consist of S lines, each containing the class average after each student transfers. Your output should be accurate to an absolute or relative error of 10^{-3}.

Sample Input

2
50
80
2
100
26

Sample Output

76.667
64.000

Explanation for Sample Output

\dfrac{50+80+100}{3} = 76.\overline{6}

\dfrac{50+80+100+26}{4} = 64


Comments


  • 0
    echometer  commented on Jan. 16, 2021, 3:11 p.m.

    I feel like the output and explanation for the example case does not correspond with the input given, and I think it instead is the output of 3 50 80 100 1 26 and not the input shown above. I'm a bit confused.


    • 3
      OneYearOld  commented on Jan. 17, 2021, 5:18 p.m.

      The program is not supposed to print out the average of all the initial students, and is only supposed to print out the average for every new student.

      Your input would result in one line out of output, 64.


  • 0
    jg119  commented on Jan. 24, 2016, 6:49 p.m.

    I keep getting RTE on the last test case, which is the only one I haven't gotten. Any suggestions?


    • 2
      Xyene  commented on Jan. 24, 2016, 10:09 p.m. edited

      Check the constraints on I and S — your array is too small.