# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
975682 | 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>
#define ll long long
using namespace std;
const ll MOD = 1e9+7;
const ll INF = 1e18;
ll mod_9(ll n) {
return n % 9;
}
void solve(){
ll q; cin >> q;
while(q--){
ll l, r; cin >> l >> r;
ll ans = 0;
for(ll i=1; i<=8; i++) {
ans += mod_9(i);
}
ll comp = (r - l + 1) / 9;
ans *= comp;
for(ll i=l+comp*9; i<=r; i++) {
ans += mod_9(i);
}
cout << ans << '\n';
}
}
int main(){
ll t=1;// cin >> t;
while(t--){
solve();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |