結果

問題 No.273 回文分解
ユーザー spaciaspacia
提出日時 2016-01-13 23:39:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,803 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-06-25 13:34:01
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,000 KB
testcase_01 AC 57 ms
50,280 KB
testcase_02 AC 56 ms
49,916 KB
testcase_03 AC 54 ms
50,400 KB
testcase_04 AC 54 ms
50,032 KB
testcase_05 AC 56 ms
50,384 KB
testcase_06 AC 56 ms
49,904 KB
testcase_07 AC 55 ms
50,368 KB
testcase_08 AC 56 ms
50,220 KB
testcase_09 AC 56 ms
50,008 KB
testcase_10 AC 56 ms
50,268 KB
testcase_11 AC 57 ms
50,288 KB
testcase_12 AC 57 ms
49,892 KB
testcase_13 AC 56 ms
50,260 KB
testcase_14 AC 57 ms
50,280 KB
testcase_15 AC 55 ms
50,244 KB
testcase_16 AC 56 ms
50,360 KB
testcase_17 AC 55 ms
50,400 KB
testcase_18 AC 55 ms
50,012 KB
testcase_19 AC 58 ms
50,400 KB
testcase_20 AC 57 ms
50,348 KB
testcase_21 AC 57 ms
49,908 KB
testcase_22 AC 55 ms
50,428 KB
testcase_23 AC 54 ms
50,268 KB
testcase_24 AC 57 ms
50,184 KB
testcase_25 AC 56 ms
50,372 KB
testcase_26 AC 56 ms
50,492 KB
testcase_27 AC 56 ms
50,032 KB
testcase_28 AC 57 ms
50,384 KB
testcase_29 AC 57 ms
50,364 KB
testcase_30 AC 56 ms
50,396 KB
testcase_31 AC 55 ms
50,436 KB
testcase_32 AC 56 ms
50,352 KB
testcase_33 AC 55 ms
49,932 KB
testcase_34 AC 57 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean isReversible (String s) {
		int len = s.length();
		for (int i = 0; i < len / 2; i++) {
			if (s.charAt(i) != s.charAt(len - i - 1)) return false;
		}
		return true;
	}
	
	public static int solve (String s) {
		int len = s.length();
		for (int i = len - 1; i > 0; i--) {
			for (int j = 0; i + j <= len; j++) {
				String sub = s.substring(j , i + j);
				//out(sub);
				if (isReversible(sub)) return i;
			}
		}
		return 0;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		out(solve(br.readLine()));
	}
}
0