11661166 SUSTech Online Judge
Problem 1166 --Find Algorithms

1166: Find Algorithms

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 703  Solved: 288
[Submit][Status][Web Board]

Description


Give you an algorithm set and an article, please answer whether algorithms in the given set appears in the article.

Input

The first line of input is the number of test cases T (1 <= T <= 100)

For each test case, the first line will be an integer n (1 <= n <= 10). The next n lines describe the given algorithm set. Each line will contain a string.

Then there will be an integer m (1 <= m <= 1000). Then there will be m words (strings) describe the article. These strings are separated by space.

We guarantee the given string only contains lowercase and uppercase English letters. And the length of each string is less than 100.

Output

For each article, if one of the given algorithms appears in the article, print “Appeared” (without quotes). Otherwise print “Not appeared” (without quotes).

Sample Input

2
3
DynamicProgramming
SweepLine
dijkstra
8
We can solve this problem by sweepline algorithm
3
DynamicProgramming
SweepLine
dijkstra
9
Dijkstra algorithm can be used to solve SSSP problem

Sample Output

Appeared
Appeared

HINT

Source

[Submit][Status]