Problem hidden

DIVSTR - Divisible Strings

Mathematicians have always loved generalizing mathematics to everything. They even contributed lots of optimizations and valuable formulas to Computer Science. Have you heard about String Multiplication? What do you think will happen if we write the following code in python?

print (3 * “abc”);

As you might have guessed, it prints “abcabcabc”. It is equal to print(“abc” + “abc” + “abc”);

We define string S is divisible by string T, if there is some non-negative integer k, which satisfies the equation S=k*T .

Your task is simple. Given two strings S and T. What is the minimum number of characters which should be removed from S, so S is divisible by T?

Input

The first line of the input contains Q the number of the test cases. (1 ≤ Q ≤ 100)

Each test case consists of two lines. 

The first line contains string S consisting of lowercase English letters. (0 ≤ |S| ≤ 104)

The second line contains string T consisting of lowercase English letters. (0 < |T| ≤ 104)

Output

For each test case print a single integer, the minimum number of characters which should be removed.

Example

Input:
4
babbaba
ab
dictate
acid

abc
p
q

Output:
3
7
0
1

Adicionado por:MRM
Data:2018-05-23
Tempo limite:1s
Tamanho do fonte:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Linguagem permitida:Todas exceto: ASM64 CLOJURE ERL FSHARP PERL6 PY_NBC SCALA TCL
Origem:SBU Newbies Programming Contest 2018
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.