| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 976636 | vjudge1 | Trol (COCI19_trol) | C++17 | 1032 ms | 408 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;
using ll = long long;
int main() {
    ll q;cin >> q;
    while (q--) {
        ll l, r; cin >> l >> r;
        ll ans = 0;
        for (ll i=l;i<=r;i++) {
            bool cek = true;
            ll x = i;
            while (cek) {
                ll temp = 0;
                while(x>0) {
                    temp+=x%10;
                    x/=10;
                }
                x = temp;
                if (x<10) cek = false;
            }
            ans+=x;
        }
        cout << ans << endl;
    }
    return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
