比赛 |
EYOI与SBOI开学欢乐赛3rd |
评测结果 |
WAAAAAATTT |
题目名称 |
小凯的数字 |
最终得分 |
60 |
用户昵称 |
Lesater |
运行时间 |
3.233 s |
代码语言 |
C++ |
内存使用 |
2.87 MiB |
提交时间 |
2022-09-05 19:59:52 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
#define ull unsigned long long
ull l,r,q;
ull asd[10];
int main()
{
freopen("xiaokai.in","r",stdin);
freopen("xiaokai.out","w",stdout);
cin>>q;
while(q!=0)
{
q--;
cin>>l>>r;
ull t=l;
for(int i=1;i<=9&&t<=r;++i)
{
asd[i]=(asd[i-1]+t%9)%9;
t++;
}
if(r-l<=9)
{
cout<<asd[r-l+1]<<endl;
continue;
}
while(t+9<=r)
t+=9;
cout<<asd[r-t+1]<<endl;
}
return 0;
}