Problem1011--查找元素

1011: 查找元素

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

给定一个整数集合s,集合中有n个元素,我有m次询问,对于每次询问给定一个整数x,若 x存在于集合s中输出x found at y,y为集合s按从小到大排序后第一次出现x的下标,否则输出x not found.

Input

多组测试数据,每组第一行为两个正整数n,m.(1<=n,m<=1000)代表集合中元素的个数和查询次数,接下来n行每行有一个正整数代表集合里的元素.(每个整数的大小小于等于100000),接下来 m行每行有一个正整数代表查询的元素

Output

详见sample output

Sample Input Copy

4 1
2
3
5	
1
5
5 2
1
3
3
3
1
2
3

Sample Output Copy

CASE# 1:
5 found at 4
CASE# 2:
2 not found
3 found at 3

Source/Category