3274.Valera and X

Time Limit: 1s Memory Limit: 256MB

Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the side equals n squares (n is an odd number) and each unit square contains some small letter of the English alphabet.

Valera needs to know if the letters written on the square piece of paper form letter "X". Valera's teacher thinks that the letters on the piece of paper form an "X", if:
on both diagonals of the square paper all letters are the same; all other squares of the paper (they are not on the diagonals) contain the same letter that is different from the letters on the diagonals.
Help Valera, write the program that completes the described task for him.

Input Format(From the terminal/stdin)

The first line contains integer n (3 \le n \lt 300; n is odd). Each of the next n lines contains n small English letters - the description of Valera's paper.

Output Format(To the terminal/stdout)

Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.

Sample Input 1

Copy
5
xooox
oxoxo
soxoo
oxoxo
xooox
 \n
     \n
     \n
     \n
     \n
     \n

Sample Output 1

Copy
NO
  \n

Sample Input 2

Copy
3
wsw
sws
wsw
 \n
   \n
   \n
   \n

Sample Output 2

Copy
YES
   \n

Sample Input 3

Copy
3
xpx
pxp
xpe
 \n
   \n
   \n
   \n

Sample Output 3

Copy
NO
  \n

Submit

请先 登录

© 2025 FAQs