比赛 |
20240913练习 |
评测结果 |
RRRRRRRRRR |
题目名称 |
数字游戏 |
最终得分 |
0 |
用户昵称 |
Davinci |
运行时间 |
10.008 s |
代码语言 |
C++ |
内存使用 |
3.27 MiB |
提交时间 |
2024-09-13 21:37:30 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
long long a[100005],maxx=-1000000000,sum;
int main(){
freopen("game.in","r",stdin);
freopen("game.out","w",stdout);
int n,s,t;
cin>>n>>s>>t;
for(int i=1;i<=n;i++){
scanf("%lld",&a[i]);
}
for(int i=s;i<=t;i++){
for(int j=1;j<=n-i+1;j++){
sum=0;
for(int k=j;k<=j+i-1;k++){
sum+=a[k];
}
maxx=max(maxx,sum);
}
}
cout<<maxx;
fclose(stdin);
fclose(stdout);
return 0;
}