# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
975619 | 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>
using namespace std;
using ll = unsigned long long;
signed main() {
int q;
cin >> q;
while (q--) {
ll l, r;
cin >> l >> r;
ll ans = 0;
for (ll i = l; i <= min(r, l + 8LL); i++) {
if (i % 9LL == 0) {
ans += 9LL * ((r - i) / 9LL) + 9LL;
}
else {
ans += (i % 9LL) * ((r - i) / 9LL) + (i % 9LL);
}
}
cout << ans << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |