mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 04:58:48 +00:00
AT1894 総和
R40651953
This commit is contained in:
parent
3b2b0091a8
commit
7678d77761
18
problem/AT1894/AT1894.cpp
Normal file
18
problem/AT1894/AT1894.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
long long n, k, a[100005], f[100005], ans;
|
||||
|
||||
int main() {
|
||||
cin >> n >> k;
|
||||
for (long long i = 1; i <= n; i++) {
|
||||
cin >> a[i];
|
||||
f[i] = f[i - 1] + a[i];
|
||||
}
|
||||
for (long long i = k; i <= n; i++) {
|
||||
ans += f[i] - f[i - k];
|
||||
}
|
||||
cout << ans << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user