# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
975949 | vjudge1 | Trol (COCI19_trol) | C++17 | 1065 ms | 524288 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 int long long
#define ld long double
using namespace std;
const int N=1e9;
signed main(){
int a; cin>>a;
for(int i=0;i<a;i++){
int x,y,ans=0; cin>>x>>y;
if(x>y){
return 0;
}
int angka[y+7];
for (int i=x;i<=y;i++){
angka[i]=i;
}
for(int j=x;j<=y;j++){
int wawo;
wawo=angka[j]%9;
ans+=wawo;
}
cout<<ans<<endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |