| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 977212 | vjudge1 | Trol (COCI19_trol) | C++17 | 1081 ms | 348 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main(){
	int n;
	cin>>n;
	while(n--){
		ll l,r;
		cin>>l>>r;
		ll ans=0;
		for(ll i=l;i<=r;i++){
		if(i%9==0)ans+=9;
		else ans+=i%9;	
		}
		cout<<ans<<endl;
	}
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
