#include <bits/stdc++.h>
#define ll unsigned long long
using namespace std;
int main(){
int q; cin >> q;
while(q--){
ll l, r; cin >> l >> r;
ll ans = 0;
for(ll i = l; i <= r; i++){
if(i % 9 != 0) ans += (i % 9);
else ans += i;
//ans += i;
}
cout << ans << endl;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Execution timed out |
1004 ms |
344 KB |
Time limit exceeded |
5 |
Execution timed out |
1014 ms |
344 KB |
Time limit exceeded |