#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
int main()
{
cin.tie(0);
cout.tie(0);
ios::sync_with_stdio(0);
int n, q, k;
cin >> n >> k;
ll a[n + 1];
for (int i = 0; i < n; i++)
{
cin >> a[i];
}
cin >> q;
int type, l, r, m;
ll sum;
int p1;
while (q--)
{
cin >> type;
if (type == 1)
{
for (int i = 0; i < k; i++)
{
cin >> type;
}
continue;
}
cin >> l >> r >> m;
l--;
r--;
sum = 0;
p1 = 1;
for (int i = l; i < (l + r) / 2; i++)
{
sum += a[i] * min(p1, m);
p1++;
}
p1 = 1;
for (int i = r; i >= (l + r) / 2; i--)
{
sum += a[i] * min(p1, m);
p1++;
}
cout << sum << "\n";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
286 ms |
636 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1282 ms |
1256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |