Submit | All submissions | Best solutions | Back to list |
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
Added by: | MRM |
Date: | 2018-05-23 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | SBU Newbies Programming Contest 2018 |
hide comments