結果

問題 No.273 回文分解
ユーザー tsunabittsunabit
提出日時 2020-03-21 23:01:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-06-06 08:51:12
合計ジャッジ時間 8,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,244 KB
testcase_01 AC 112 ms
41,188 KB
testcase_02 AC 109 ms
41,052 KB
testcase_03 AC 102 ms
41,368 KB
testcase_04 AC 113 ms
41,296 KB
testcase_05 AC 102 ms
40,944 KB
testcase_06 AC 117 ms
41,584 KB
testcase_07 AC 107 ms
41,124 KB
testcase_08 AC 104 ms
40,256 KB
testcase_09 AC 113 ms
41,040 KB
testcase_10 AC 113 ms
41,188 KB
testcase_11 AC 102 ms
39,916 KB
testcase_12 AC 114 ms
41,528 KB
testcase_13 AC 121 ms
40,992 KB
testcase_14 AC 119 ms
41,576 KB
testcase_15 AC 111 ms
41,504 KB
testcase_16 AC 101 ms
40,292 KB
testcase_17 AC 112 ms
41,128 KB
testcase_18 AC 114 ms
41,208 KB
testcase_19 AC 117 ms
41,196 KB
testcase_20 AC 111 ms
41,152 KB
testcase_21 AC 99 ms
39,936 KB
testcase_22 AC 116 ms
41,364 KB
testcase_23 AC 113 ms
41,820 KB
testcase_24 AC 117 ms
41,852 KB
testcase_25 AC 117 ms
41,444 KB
testcase_26 AC 117 ms
41,260 KB
testcase_27 AC 108 ms
41,152 KB
testcase_28 AC 124 ms
41,444 KB
testcase_29 AC 115 ms
41,196 KB
testcase_30 AC 121 ms
41,308 KB
testcase_31 AC 112 ms
41,120 KB
testcase_32 AC 114 ms
41,132 KB
testcase_33 AC 114 ms
41,300 KB
testcase_34 AC 102 ms
40,004 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