比赛 EYOI与SBOI开学欢乐赛3rd 评测结果 AAAAAAAAAA
题目名称 小凯的数字 最终得分 100
用户昵称 op_组撒头屯 运行时间 0.900 s
代码语言 C++ 内存使用 1.72 MiB
提交时间 2022-09-05 19:44:09
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
	freopen ("xiaokai.in","r",stdin);
	freopen ("xiaokai.out","w",stdout);
	int q;scanf("%d",&q);
	for (int i=1;i<=q;i++){
		ll l,r;scanf("%lld%lld",&l,&r);
		printf("%lld\n",(l+r)%9*(r-l+1)%9*5%9);
	} 
	return 0;
}