結果

問題 No.1617 Palindrome Removal
ユーザー merlinmerlin
提出日時 2021-07-22 21:56:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 76,476 KB
実行使用メモリ 43,756 KB
最終ジャッジ日時 2024-07-17 17:40:26
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
43,276 KB
testcase_01 AC 158 ms
43,688 KB
testcase_02 AC 160 ms
42,896 KB
testcase_03 AC 154 ms
42,972 KB
testcase_04 AC 159 ms
43,756 KB
testcase_05 AC 152 ms
42,568 KB
testcase_06 AC 147 ms
42,924 KB
testcase_07 AC 128 ms
42,088 KB
testcase_08 AC 51 ms
36,484 KB
testcase_09 AC 50 ms
36,708 KB
testcase_10 AC 147 ms
42,620 KB
testcase_11 AC 134 ms
42,420 KB
testcase_12 AC 162 ms
43,308 KB
testcase_13 AC 157 ms
42,804 KB
testcase_14 AC 52 ms
36,492 KB
testcase_15 AC 52 ms
36,676 KB
testcase_16 AC 52 ms
36,916 KB
testcase_17 AC 50 ms
36,940 KB
testcase_18 AC 51 ms
36,776 KB
testcase_19 AC 51 ms
37,020 KB
testcase_20 AC 51 ms
36,748 KB
testcase_21 AC 53 ms
36,700 KB
testcase_22 AC 50 ms
36,492 KB
testcase_23 AC 51 ms
37,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        char s[]=bu.readLine().toCharArray();
        int i,c[]=new int[26],n=s.length;
        boolean p=true;
        for(i=0;i<n;i++)
        {
            c[s[i]-'a']++;
            p&=s[i]==s[n-i-1];
        }

        int ans,max=0;
        for(i=0;i<26;i++)
        if(c[i]!=0) max=Math.max(max,c[i]);

        if(!p) ans=n;
        else
        {
            if(max==n)
            {
                if(n%2==0) ans=0;
                else ans=-1;
            }
            else if(max==n-1)
            {
                if(n==3) ans=-1;
                else ans=n-2;
            }
            else ans=n-2;
        }
        System.out.println(ans);
    }
}
0