题目链接:http://codeforces.com/problemset/problem/1189/C
思路:前缀和。
AC代码:
#include<bits/stdc++.h>using namespace std;const int maxn = 1e5 +5;int a[maxn];int n,m;int ask(int x,int y){ return (a[y] - a[x-1])/10;}int main(){ cin >> n; int x,y; for(int i = 1;i <= n;i++) { cin >> a[i]; a[i] += a[i-1]; } cin >> m; while(m--) { cin >> x >> y; cout << ask(x,y) << endl; } return 0;}总结
以上是内存溢出为你收集整理的Codeforces 1189C Candies!全部内容,希望文章能够帮你解决Codeforces 1189C Candies!所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)