import java.io.IOException;
import java.util.*;
import java.lang.*;
import static java.lang.String.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
sc.nextLine();
String str[] = {null};
char[][] array = new char[T][];
char[][] temp = new char[T][];
for(int i = 0 ; i < T ; i++) {
str[i] = sc.next();
array[i] = str[i].toCharArray();
for(int k = 0 ; k < array[i].length ; k++) {
temp[i][k] = array[i][array[i].length - 1 - k];
}
if(array[i] == temp[i])
System.out.println("Y");
else
System.out.println("N");
}
}
}
디버깅을 해보니까 temp[i] 배열에 array[i]를 거꾸로 복사하는 과정에서 오류가 나면서 멈추더라구요...
왜인지 알고 싶습니다