记录编号 |
92702 |
评测结果 |
AAAAAAAAAA |
题目名称 |
帮忙 |
最终得分 |
100 |
用户昵称 |
雪狼 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.235 s |
提交时间 |
2014-03-22 10:33:57 |
内存使用 |
1.15 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#define REP(i,a,b) for(int i=a;i!=b+1;++i)
#define CLR(c,x) memset(c,x,szieof(c))
#define maxn 110000+10
#define INF ~0U>>2
using namespace std;
int n,k;
int A[maxn],sum[maxn];
long double ans;
long double G(int i,int j){return (sum[i]-sum[j])/(long double)(i-j);}
void setIO(string s){
string in=s+".in",out=s+".out";
freopen(in.c_str(),"r",stdin);
freopen(out.c_str(),"w",stdout);
}
void read(){
scanf("%d%d",&n,&k);
REP(i,1,n){
scanf("%d",A+i);
sum[i]=sum[i-1]+A[i];
}
}
void work(){
int max=0;
REP(i,0,n-k){
int j=i+k;
if(G(j,max)<G(j,i))max=i;
if(G(j,max)>ans)ans=G(j,max);
}
printf("%d\n",(int)(ans*1000));
}
int main(){
setIO("helpz");
read();
work();
return 0;
}