Submission #975683

#TimeUsernameProblemLanguageResultExecution timeMemory
975683vjudge1Trol (COCI19_trol)C++17
30 / 50
1066 ms600 KiB
#include<bits/stdc++.h>
#define ll long long
#define fi first
#define se second
using namespace std;

const ll MOD = 1e9+7;
const ll INF = 1e18;

void solve(){
    ll q; cin >> q;
    while(q--){
        ll l, r; cin >> l >> r;
        ll ans = 0;
        for(ll i=l; i<=r; i++){
            ll a = i % 9;
            if(a == 0) a = 9;
            ans += a;
        }
        cout << ans << '\n';
    }
}

int main(){
    ll t=1;// cin >> t;
    while(t--){
        solve();
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...