| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 976647 | vjudge1 | Trol (COCI19_trol) | C++17 | 1 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>
#define ll long long
using namespace std;
int main(){
    ll q; cin>>q;
    for(ll i=1; i<=q; i++){
        ll L,R;
        cin>>L>>R;
        ll jarak=(R-L+1);
        ll ans=(jarak/9)*45;
        ll sisa=jarak%9;
        ll start=L%9;
        if(start==0){
            start=9;
        }
        while(sisa--){
            ans+=start;
            start++;
        }
        cout<<ans<<endl;
    }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
