# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
974603 | 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;
#define ull unsigned long long
int main(){
int q; cin >> q;
while(q--){
ull l, r; cin >> l >> r;
l--;
cout << (((r/9)*45) + (((r%9) * ((r%9)+1))/2)) - (((l / 9) * 45) + (((l % 9) * ((l % 9) + 1))/2)) << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |