Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 공부
- BOJ
- 필기후기
- 코딩
- 프로그래머스
- Linux
- 정수내림차순으로배치하기
- 웹개발
- 연결요소의개수
- 프로그래밍언어
- 웹프로그래밍
- 웹
- 프로그래밍
- 한국재정정보원
- 중소기업면접
- 백준
- 건보필기
- 확인문제
- 알고리즘
- HTML
- java
- algorithm
- 후기
- 인강
- 수박수박수박수박수?
- 이클립스
- CSS
- 부스트코스
- 농은면접
- 필기
Archives
- Today
- Total
공부하는 히욤이
1989. 초심자의 회문 검사 본문
SW Expert 1989. 초심자의 회문 검사
* 문제의 저작권은 SW Expert에 있습니다
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.ArrayList;public class Solution {static int answer;public static void main(String[] args) throws Exception {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));//BufferedReader br = new BufferedReader(new FileReader("input.txt"));int T = Integer.parseInt(br.readLine());for(int test_case = 1; test_case <= T; test_case++) {String word = br.readLine();if (word.length()>=3 && word.length()<=10) {String[] w = word.split(""); //한 글자씩 자르기for (int i = 0; i < w.length; i++) {if (w[i].equals(w[w.length-1-i])) { //앞에 값과 뒤에 값을 비교 || 배열은 0부터 시작하니깐 length 값에서 -1 해줌answer = 1;} else {answer = 0;}}}System.out.println("#" + test_case +" " + answer );}br.close();}}
'Algorithm > SW Expert Academy' 카테고리의 다른 글
1945. 간단한 소인수분해 (0) | 2019.01.25 |
---|---|
1284. 수도 요금 경쟁 (0) | 2019.01.24 |
1986. 지그재그 숫자 (0) | 2019.01.23 |
2056. 연월일 달력 (0) | 2019.01.17 |
2071. 평균값 구하기 (0) | 2019.01.11 |