Codeforces 1189C Candies!

Codeforces 1189C Candies!,第1张

概述题目链接: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

题目链接: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!所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228618.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存