409595: GYM103640 K KIARA is a Recursive Acronym

Memory Limit:1024 MB Time Limit:0 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

K. KIARA is a Recursive Acronymtime limit per test0.5 secondsmemory limit per test1024 megabytesinputstandard inputoutputstandard output

A recursive acronym is an acronym in which one of its letters stands for the acronym itself. For instance, the first word in the title of this problem is a recursive acronym of the full title. Another example is "BOB", which is an acronym of "Beware of Bob".

Given a list of words, you must decide whether there exists a word in the list which is a recursive acronym of a phrase that can be formed using words in the list. Since the first letter of any word can stand for the whole word, it is enough to decide whether there exists a word in the list which can be formed using the first letter of some words in the list.

Input

The first line contains a positive integer $$$N$$$ indicating the number of words in the list. Each of the next $$$N$$$ lines contains a non-empty string made of uppercase letters representing a word in the list. The sum of the lengths of all the strings is at most $$$10^6$$$.

Output

Output a single line with the uppercase letter "Y" if there exists a word in the list which is a recursive acronym of a phrase that can be formed using words in the list, and the uppercase letter "N" otherwise.

ExamplesInput
3
OF
BOB
BEWARE
Output
Y
Input
3
WHO
MADE
WHO
Output
N
Input
5
JUST
USE
WORD
XX
TWICE
Output
Y
Input
1
YYYYYYYYYYY
Output
Y

加入题单

上一题 下一题 算法标签: