2208: 找出和最大的连续子串

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:13 Solved:6

Description

在一个长度为n的数字序列中,找到长度为k的连续子串中,和最大的那一个。

Input

第一行:输入n和k;
第二行:输入n个数字。

Output

输出符合要求,长度为k的子串。

Sample Input Copy

10 3
9 2 3 4 5 6 7 8 9 5

Sample Output Copy

7 8 9

Source/Category