1 条题解
-
0小鸟 (slz钟鼎皓) LV 8 @ 2024-4-9 17:25:32
😕 好难┭┮﹏┭┮
- 1
信息
- ID
- 3082
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- (无)
- 递交数
- 89
- 已通过
- 21
- 上传者
😕 好难┭┮﹏┭┮
#include<bits/stdc++.h>
using namespace std;
long long a[10005];
int main()
{
long long n, m;
cin >> n >> m;
for(int i = 1; i <= n; i++)
cin >> a[i];
for(int i = 1; i <= m; i++)
{
int x, y;
cin >> x >> y;
long long sum = 0;
for(int i = x; i <= y; i++)
sum += a[i];
cout << sum << endl;
}
return 0;
}