제출 #704767

#제출 시각아이디문제언어결과실행 시간메모리
704767willychanTrol (COCI19_trol)C++14
50 / 50
1 ms212 KiB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
//#include<bits/extc++.h>
//__gnu_pbds

ll get(ll b){
	ll g = b%9;
	ll k = (g*g+g)/2;
	k+=45LL*(b/9);
	return k;
}

void solve(){
	ll l,r;cin>>l>>r;
	cout<<get(r)-get(l-1)<<"\n";
}

int main(){
	ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int t;cin>>t;
	while(t--){
		solve();
	}

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...