結果

問題 No.273 回文分解
ユーザー tsunabittsunabit
提出日時 2020-03-21 23:01:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 6,098 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-12-23 22:55:57
合計ジャッジ時間 10,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,996 KB
testcase_01 AC 138 ms
41,040 KB
testcase_02 AC 122 ms
40,008 KB
testcase_03 AC 119 ms
39,752 KB
testcase_04 AC 134 ms
41,220 KB
testcase_05 AC 137 ms
41,160 KB
testcase_06 AC 135 ms
41,492 KB
testcase_07 AC 135 ms
40,872 KB
testcase_08 AC 126 ms
40,008 KB
testcase_09 AC 137 ms
41,148 KB
testcase_10 AC 140 ms
41,384 KB
testcase_11 AC 137 ms
41,080 KB
testcase_12 AC 122 ms
40,120 KB
testcase_13 AC 126 ms
40,764 KB
testcase_14 AC 144 ms
41,292 KB
testcase_15 AC 138 ms
41,064 KB
testcase_16 AC 145 ms
41,080 KB
testcase_17 AC 135 ms
40,872 KB
testcase_18 AC 135 ms
41,404 KB
testcase_19 AC 122 ms
40,224 KB
testcase_20 AC 137 ms
40,952 KB
testcase_21 AC 131 ms
41,152 KB
testcase_22 AC 138 ms
41,228 KB
testcase_23 AC 141 ms
41,200 KB
testcase_24 AC 142 ms
41,496 KB
testcase_25 AC 144 ms
41,276 KB
testcase_26 AC 136 ms
41,324 KB
testcase_27 AC 145 ms
41,632 KB
testcase_28 AC 146 ms
41,636 KB
testcase_29 AC 143 ms
41,636 KB
testcase_30 AC 125 ms
40,392 KB
testcase_31 AC 130 ms
41,160 KB
testcase_32 AC 133 ms
41,160 KB
testcase_33 AC 119 ms
39,800 KB
testcase_34 AC 136 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No273 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int ans = 1; 
		if(s.length() == 2 && s.charAt(0) == s.charAt(1)) {
			System.out.println(1);
			return;
		}
		
		for(int i = 0; i < s.length(); i++) {
			for(int j = i+1; j <= s.length(); j++) {
				if(!(s.substring(i, j).equals(s))) {
					ans = Math.max(ans, kai(s.substring(i, j)));
				}
			}
		}
		System.out.println(ans);
	}
	public static int kai(String s) {
		StringBuilder sb = new StringBuilder(s);
		sb.reverse();
		if(sb.toString().equals(s)) {
			return s.length();
		}
		else {
			return 0;
		}
	}
}
0