logo AlgoBeat OnlineJudge
登录 注册

#213423. [GCJ 2012 Qualification] Recycled Numbers

内存限制:1024 MiB 时间限制:3000 ms 标准输入输出
题目类型:VJudge(洛谷) 评测方式:VJudge
上传者: 匿名

题目描述

Do you ever become frustrated with television because you keep seeing the same things, recycled over and over again? Well I personally don't care about television, but I do sometimes feel that way about numbers.

Let's say a pair of distinct positive integers is recycled if you can obtain by moving some digits from the back of to the front without changing their order. For example, is a recycled pair since you can obtain by moving from the end of to the front. Note that and must have the same number of digits in order to be a recycled pair. Neither nor can have leading zeros.

Given integers and with the same number of digits and no leading zeros, how many distinct recycled pairs are there with A B?

输入格式

The first line of the input gives the number of test cases, . test cases follow. Each test case consists of a single line containing the integers and .

输出格式

For each test case, output one line containing "Case #x: y", where is the case number (starting from 1), and is the number of recycled pairs with .

样例

样例输入 1

4
1 9
10 40
100 500
1111 2222

样例输出 1

Case #1: 0
Case #2: 3
Case #3: 156
Case #4: 287

数据范围与提示

Are we sure about the output to Case #4?

Yes, we're sure about the output to Case #4.

Limits

  • .
  • and have the same number of digits.

Test set 1 (10 Pts, Visible Verdict)

.

Test set 2 (15 Pts, Hidden Verdict)

.