# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1071627 |
2024-08-23T09:27:15 Z |
vjudge1 |
Addk (eJOI21_addk) |
C++17 |
|
2000 ms |
604 KB |
#include<bits/stdc++.h>
using namespace std;
#define int unsigned long long
#define nn "\n";
#define pb push_back
const int N = 2e5 + 8 , inf = 1e17 ;
int n , k , a[N] ,q ;
signed main() {
ios_base::sync_with_stdio(0), cin.tie(0);
cin>> n >> k ;
for(int i= 1 ; i <= n ; i++){
cin>> a[i];
}
cin>> q ;
while(q--){
int h , l , r , m ;
cin>> h ;
if(h == 1 ){
int x ;
cin>> x ;
}
else {
cin >> l >> r >> m;
int sum = 0 , ans =0 ;
int j = 1;
int go = l ;
while(go+m - 1 <= r){
for(int i = go ; i <= go+m-1; i++)ans+=a[i];
go++;
}
while (l < r) {
sum += (a[l] * j) + (a[r] * j);
l++;
r--;
j = min(j + 1 , m );
}
if (l == r) {
sum += a[l] * j;
}
cout << ans << nn
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
38 ms |
488 KB |
Output is correct |
3 |
Correct |
278 ms |
348 KB |
Output is correct |
4 |
Correct |
906 ms |
348 KB |
Output is correct |
5 |
Execution timed out |
2062 ms |
600 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2049 ms |
604 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2041 ms |
600 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |