记录编号 |
575177 |
评测结果 |
AAAAAAAAAA |
题目名称 |
小凯的数字 |
最终得分 |
100 |
用户昵称 |
00000 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
2.093 s |
提交时间 |
2022-09-07 17:52:51 |
内存使用 |
4.10 MiB |
显示代码纯文本
#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);
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);
}
return 0;
}