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
- dotenv
- 메소드한줄
- redmine
- yum설치목록
- nodejs 환경변수처리
- 레드마인테마
- 리액트네이티브
- 패키지
- 배열크기
- Redmine theme
- multi instance
- 멀티 인스턴스
- intelij sqlmap
- tomcat install
- .env
- yum목록
- rpm설치목록
- sqlmap warring
- sqlmap 경고
- Node
- node postgresql
- intelij mybatis
- pg환경변수
- 배열컬럼
- node.js postgresql
- rpm목록
- Java
- CentOS
- 레드마인 테마
- 레드마인
Archives
- Today
- Total
ZeroRadish
[백준] 1254번 팰린드롬 만들기(JAVA) 본문
https://www.acmicpc.net/problem/1254
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
String s = new BufferedReader(new InputStreamReader(System.in)).readLine();
int n = s.length();
int minLen = 2 * n - 1;
for (int i = 0; i < n; i++) {
boolean isPalindrome = true;
for (int j = 0; j < (n - i) / 2; j++) {
if (s.charAt(i + j) != s.charAt(n - 1 - j)) {
isPalindrome = false;
break;
}
}
if (isPalindrome) {
minLen = n + i;
break;
}
}
System.out.println(minLen);
}
}
Comments