# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1107422 | toast12 | Trol (COCI19_trol) | C++14 | 1 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int sum_of_digits(ll x) {
if (x/10 == 0) return x;
ll temp = 0;
while (x > 0) {
temp += x%10;
x /= 10;
}
return sum_of_digits(temp);
}
int main() {
int q;
cin >> q;
while (q--) {
ll l, r;
cin >> l >> r;
ll ans = 0;
ll tot = r-l+1;
ll cnt = tot/9;
ans += 1ll*45*cnt;
for (int i = 0; i < (tot % 9); i++) {
int x = (l+i) % 9;
if (x == 0) x = 9;
ans += x;
}
cout << ans << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |