結果

問題 No.273 回文分解
ユーザー spaciaspacia
提出日時 2016-01-13 23:37:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-06-06 02:28:15
合計ジャッジ時間 5,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 53 ms
37,008 KB
testcase_02 AC 52 ms
36,768 KB
testcase_03 AC 51 ms
36,920 KB
testcase_04 WA -
testcase_05 AC 53 ms
36,920 KB
testcase_06 AC 52 ms
36,580 KB
testcase_07 AC 52 ms
36,964 KB
testcase_08 AC 53 ms
37,056 KB
testcase_09 AC 56 ms
36,828 KB
testcase_10 AC 52 ms
36,472 KB
testcase_11 AC 53 ms
36,940 KB
testcase_12 AC 54 ms
37,028 KB
testcase_13 AC 53 ms
36,912 KB
testcase_14 AC 54 ms
37,092 KB
testcase_15 AC 51 ms
36,904 KB
testcase_16 AC 50 ms
36,528 KB
testcase_17 AC 51 ms
36,988 KB
testcase_18 WA -
testcase_19 AC 52 ms
36,512 KB
testcase_20 AC 53 ms
36,776 KB
testcase_21 AC 52 ms
36,484 KB
testcase_22 AC 54 ms
36,492 KB
testcase_23 WA -
testcase_24 AC 52 ms
36,928 KB
testcase_25 AC 54 ms
36,736 KB
testcase_26 AC 55 ms
36,524 KB
testcase_27 AC 53 ms
36,836 KB
testcase_28 AC 54 ms
36,996 KB
testcase_29 AC 54 ms
36,756 KB
testcase_30 AC 55 ms
36,920 KB
testcase_31 WA -
testcase_32 AC 53 ms
36,944 KB
testcase_33 AC 53 ms
37,012 KB
testcase_34 AC 53 ms
36,820 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; 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