Problem5501--string的用法4

5501: string的用法4

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入n个字符串,在n个字符串中查找是否存在字符串str,找到则输出str的位置,找不到则输出-1.

Input

第一行:一个整数n(1<=n<=100)
接下来n行:每行一个字符串(不包含空格)
再一行:一个字符串str(不包含空格)

Output

输出一行:
该str在n个字符串中的位置(从0开始计数),不存在则输出-1

Sample 1 Input

5
abc
def
1425
today
753
today

Sample 1 Output

3

Sample 2 Input

6
abc
def
1425
today
753
iiii
tomorrow

Sample 2 Output

-1

Sample 3 Input

7
abc
def
1425
today
753
!!!###
iiii
iiii

Sample 3 Output

6

Source/Category