結果

問題 No.273 回文分解
ユーザー yun_appyun_app
提出日時 2016-05-11 23:44:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-06-25 13:36:52
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,152 KB
testcase_01 AC 55 ms
49,924 KB
testcase_02 AC 56 ms
50,028 KB
testcase_03 AC 55 ms
50,328 KB
testcase_04 AC 55 ms
50,280 KB
testcase_05 AC 55 ms
50,004 KB
testcase_06 AC 56 ms
50,308 KB
testcase_07 AC 54 ms
50,256 KB
testcase_08 AC 56 ms
50,032 KB
testcase_09 AC 57 ms
50,440 KB
testcase_10 AC 56 ms
50,188 KB
testcase_11 AC 55 ms
50,352 KB
testcase_12 AC 56 ms
50,088 KB
testcase_13 AC 55 ms
50,156 KB
testcase_14 AC 58 ms
50,164 KB
testcase_15 AC 55 ms
50,084 KB
testcase_16 AC 55 ms
50,152 KB
testcase_17 AC 54 ms
50,256 KB
testcase_18 AC 55 ms
49,980 KB
testcase_19 AC 55 ms
50,304 KB
testcase_20 AC 55 ms
50,356 KB
testcase_21 AC 56 ms
50,416 KB
testcase_22 AC 56 ms
50,016 KB
testcase_23 AC 55 ms
49,984 KB
testcase_24 AC 54 ms
49,972 KB
testcase_25 AC 54 ms
50,088 KB
testcase_26 AC 57 ms
50,280 KB
testcase_27 AC 55 ms
50,276 KB
testcase_28 AC 56 ms
50,348 KB
testcase_29 AC 56 ms
50,108 KB
testcase_30 AC 57 ms
49,916 KB
testcase_31 AC 55 ms
50,220 KB
testcase_32 AC 54 ms
50,028 KB
testcase_33 AC 55 ms
50,412 KB
testcase_34 AC 54 ms
49,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        int max = line.length();
        int ans = 1;
        while(max-->0){
            for(int i=0;i<=line.length()-max;i++){
                if(check(line.substring(i,i+max))){
                    System.out.println(max);
                    return;
                }
            }
        }
        System.out.println(1);
    }
    public static boolean check(String line){
        int len = line.length();
        for(int i=0;i<len;i++){
            if(line.charAt(i) != line.charAt(len-i-1)){
                return false;
            }
        }
        return true;
    }
}
0