# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
20532 | CodingAmolang (#35) | 채점 시스템 (OJUZ11_judge) | C++11 | 53 ms | 1116 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<stdio.h>
int main() {
int tc;
scanf("%d", &tc);
while (tc--) {
long long a, b;
scanf("%lld%lld", &a, &b);
long long p = 10;
int cnt = 0;
while (p + a <= b) {
if (a / p == 0) {
cnt++;
}
p *= 10;
}
printf("%d\n", cnt);
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |