시간 제한메모리 제한제출정답맞힌 사람정답 비율
20 초 (추가 시간 없음) 1024 MB25121076.923%

문제

Ron read a book about boring numbers. According to the book, a positive number is called boring if all of the digits at even positions in the number are even and all of the digits at odd positions are odd. The digits are enumerated from left to right starting from 1. For example, the number 1478 is boring as the odd positions include the digits {1, 7} which are odd and even positions include the digits {4, 8} which are even.

Given two numbers L and R, Ron wants to count how many numbers in the range [LR] (L and R inclusive) are boring. Ron is unable to solve the problem, hence he needs your help.

입력

The first line of the input gives the number of test cases, TT test cases follow. Each test case consists of a single line with two numbers L and R.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the count of boring numbers.

제한

  • 1 ≤ T ≤ 100.

Test Set 1 (7점)

  • 1 ≤ L ≤ R ≤ 103.

Test Set 2 (12점)

  • 1 ≤ L ≤ R ≤ 1018.

예제 입력 1

3
5 15
120 125
779 783

예제 출력 1

Case #1: 6
Case #2: 3
Case #3: 2

힌트

In Sample Case #1, the numbers in the range are {5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} out of which {5, 7, 9, 10, 12, 14} are boring, hence the answer is 6.

In Sample Case #2, the numbers in the range are {120, 121, 122, 123, 124, 125} out of which {121, 123, 125} are boring, hence the answer is 3.

In Sample Case #3, the numbers in the range are {779, 780, 781, 782, 783} out of which {781, 783} are boring, hence the answer is 2.

채점 및 기타 정보

  • 예제는 채점하지 않는다.