# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1007320 | vjudge1 | Trol (COCI19_trol) | C++17 | 1080 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(){
int q; cin >> q;
while(q--){
int l, r; cin >> l >> r;
ll ans = 0;
for(int i = l; i <= r; i++){
int num = i;
while(num >= 10){
int temp = 0;
while(num > 0){
temp += num % 10;
num /= 10;
};
num = temp;
};
ans += num;
};
cout << ans << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |