시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB105550.000%

문제

One day, I sat down in my chair and wondered, “Which theorem is the best?” After an hour on my favourite search engine (Ask Jeeves), I stumbled across the BEST Theorem. (The BEST Theorem gives a formula for the number of Eulerian circuits in directed graphs—though, that is not important for this problem.) The BEST Theorem is named after the authors of the paper: de Bruijn, van Aardenne-Ehrenfest, Smith and Tutte.

A title is clever if can be formed by selecting one uppercase letter from each author’s name (in any order) to get the title. Note that this implies that the number of letters in the title must be the same as the number of authors.

Last year, the problem setters of the South Pacific Region proved a theorem about number of k-th powers modulo n, and we would like to give it a clever title. The problem setters’ names are Anderson, Best, Cameron-Jones, Corney, French, Guttmann, Haigh, Lobb, Sergeev, Tran, Ward-Graham and Whalan. Unfortunately, while the “ABCCFGHLSTWW Theorem” does include one letter from each author’s name, ABCCFGHLSTWW is not a valid word (in the real world, a valid word is an English word—in this problem, the set of valid words will be given). Moreover, no matter how you permute the names, there are no valid words that can be formed by using the uppercase letters from the problem setters’ names. However, if just Anderson, French, Sergeev and Tran were to discover a theorem, they could call their theorem the FAST Theorem (French, Anderson, Sergeev and Tran). Interestingly, this is the only permutation of those names that can be used for the FAST Theorem. In contrast, imagine the authors were Merlin, Oberon and Othello, and these authors wished to call their theorem the MOO Theorem. There are two permutations (Merlin, Oberon and Othello, as well as Merlin, Othello and Oberon) of their names that can make the MOO Theorem clever.

Usually the ordering of names on the publication for a theorem is important. However, since I already have tenure, all I care about is counting the number of permutations that can make a title clever. Given the authors of a theorem, and a list of valid titles for that theorem, count the number of permutations of author names that can be used to make each title clever.

입력

The input starts with a line containing two integers n (1 ≤ n ≤ 10), which is the number of authors, and k (1 ≤ k ≤ 1 000), which is the number of valid words.

The next n lines describe the authors. Each of these lines contains a string, which is the name of the author. The author’s name uses only lowercase and uppercase letters, and consists of between 1 and 20 characters, inclusive. There is at least one uppercase letter in the author’s name.

The next k lines describe the valid words. Each of these lines contains a string, which is the valid word. Each valid word uses only uppercase letters and consists of between 1 and 20 characters, inclusive.

출력

Display k integers, the number of valid orderings of author names for each title respectively.

예제 입력 1

4 1
deBruijn
vanAardenneEhrenfest
Smith
Tutte
BEST

예제 출력 1

1

예제 입력 2

10 3
Anderson
Best
CameronJones
Corney
French
Guttmann
Haigh
Lobb
Sergeev
Tran
DOESTHISWORK
TOOSHORT
THISISTOOLONG

예제 출력 2

0
0
0

예제 입력 3

4 2
Anderson
French
Sergeev
Tran
SLOW
FAST

예제 출력 3

0
1

예제 입력 4

3 1
AA
BB
AB
AAB

예제 출력 4

2