COCI '14 Contest 7 #5 Prosjek

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 0.6s
Memory limit: 64M

Author:
Problem type

You are given an array of N integers. Find a consecutive subsequence of numbers of the length at least K that has the maximal possible average.

Please note: the average of a subsequence is the sum of all the numbers in the subsequence divided by its length.

Input

The first line of input contains two integers N (1N3105) and K (1KN). The second line of input contains N integers ai (1ai106)

Output

The first and only line of output must contain the maximal possible average. An absolute deviation of ±0.001 from the official solution is permitted.

Scoring

In test cases worth 30% of total points, it will hold that N is not larger than 5000.

Sample Input 1

Copy
4 1
1 2 3 4

Sample Output 1

Copy
4.000000

Sample Input 2

Copy
4 2
2 4 3 4

Sample Output 2

Copy
3.666666

Sample Input 3

Copy
6 3
7 1 2 1 3 6

Sample Output 3

Copy
3.333333

Comments


  • 1
    Y  commented on Aug. 11, 2019, 10:54 p.m.

    Please notice that it is expected to output finite number of digits after the decimal.