# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
976042 | vjudge1 | Trol (COCI19_trol) | C++98 | 1 ms | 600 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 <iostream>
using namespace std;
int main(){
int q;
cin>>q;
while (q--)
{
long long l,r;
cin>>l>>r;
long long ans=0;
for (int i = l; i <= r; i++)
{
if(i%9==0){
ans+=9;
}else{
ans+=i%9;
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |