# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1036009 |
2024-07-27T01:43:09 Z |
andecaandeci |
Addk (eJOI21_addk) |
C++17 |
|
766 ms |
3412 KB |
#include <bits/stdc++.h>
#define nikah ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long
const ll maxn = 1e5+7;
using namespace std;
ll n,q,k;
ll a[maxn], pref[maxn];
int main() {
nikah
cin>>n>>k;
for (ll i=1; i<=n; i++) {
cin>>a[i];
pref[i] = a[i] + pref[i-1];
}
cin>>q;
ll maks = 0;
while (q--) {
ll mode,l,r,m; cin>>mode>>l>>r>>m;
if (mode == 1) continue;
m = min(m, r-l+2 - m);
ll ans = 0, re = l + m - 1;
while (re <= r) {
ans += (pref[re] - pref[l-1]);
l++;
re++;
}
cout<<ans;
if (q > 1) cout<<endl;
}
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:18:6: warning: unused variable 'maks' [-Wunused-variable]
18 | ll maks = 0;
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
114 ms |
1364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
766 ms |
3412 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |