-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBAEKJOON_10988
More file actions
31 lines (24 loc) · 784 Bytes
/
BAEKJOON_10988
File metadata and controls
31 lines (24 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import java.io.*;
import java.sql.Array;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
List<Character> list= new ArrayList<>();
int result =1;
String str= br.readLine();
int size = str.length();
for(int i=0; i<str.length(); i++){
list.add(str.charAt(i));
}
for(int i=0; i<list.size(); i++){
if(str.charAt(i) != list.get(size-i-1)){
result =0;
}
}
bw.write(String.valueOf(result));
bw.flush();
bw.close();
}
}