#include <bits/stdc++.h>
using namespace std;
int q;
long long l, r;
long long sum(int a, int b) {
return (a + b) * (b - a + 1) / 2;
}
long long sum(long long x) {
long long t = x / 9;
x %= 9;
return sum(1, 9) * t + sum(1, x);
}
int main() {
cin >> q;
while (q--) {
cin >> l >> r;
cout << sum(r) - sum(l - 1) << '\n';
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |