0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-11 16:31:58 +00:00

P1614 爱与愁的心痛

R36322094
This commit is contained in:
Baoshuo Ren 2020-08-04 01:13:09 +08:00 committed by Baoshuo Ren
parent 6a7508483b
commit 2ada273bc8
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

22
problem/P1614/P1614.cpp Normal file
View File

@ -0,0 +1,22 @@
// https://www.luogu.com.cn/record/36322094
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, a[100005], minn=100000, t=0;
cin >> n >> m;
for(int i = 1 ; i <= n ; i++) {
cin >> a[i];
}
for(int i = 1 ; i <= n-m+1 ; i++) {
for(int j = 1 ; j <= m ; j++) {
t += a[i+j-1];
}
minn = min(t, minn);
t = 0;
}
cout << minn << endl;
return 0;
}