比赛 |
EYOI与SBOI开学欢乐赛3rd |
评测结果 |
AAAAAAAAAA |
题目名称 |
小凯的数字 |
最终得分 |
100 |
用户昵称 |
00000 |
运行时间 |
2.071 s |
代码语言 |
C++ |
内存使用 |
1.72 MiB |
提交时间 |
2022-09-05 20:05:46 |
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll t;
ll l,r;
ll ans;
void cop(ll x)
{
if(x==0) return;
ans+=(x%10);
cop(x/10);
}
int main(){
freopen("xiaokai.in","r",stdin);
freopen("xiaokai.out","w",stdout);
cin>>t;
while(t--)
{
scanf("%ld%ld",&l,&r);
// cin>>l>>r;
ll k=(r-l+1);
k%=9;
r=l+k-1;
ans=0;
for(ll q=l;q<=r;q++)
{
cop(q);
}
printf("%ld\n",ans%9);
// cout<<ans%9<<endl;
}
return 0;
}