# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
976646 |
2024-05-06T23:50:58 Z |
vjudge1 |
Trol (COCI19_trol) |
C++17 |
|
1000 ms |
348 KB |
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main(){
ll q; cin>>q;
for(ll i=1; i<=q; i++){
ll L,R;
cin>>L>>R;
ll ans=0;
for(ll i=L; i<=R; i++){
if(i%9==0){
ans+=9;
}else{
ans+=i%9;
}
}
cout<<ans<<endl;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Execution timed out |
1037 ms |
344 KB |
Time limit exceeded |
5 |
Execution timed out |
1067 ms |
348 KB |
Time limit exceeded |