結果

問題 No.1617 Palindrome Removal
ユーザー merlinmerlin
提出日時 2021-07-22 21:46:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-07-17 17:12:11
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
43,480 KB
testcase_01 AC 156 ms
43,344 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 159 ms
44,304 KB
testcase_05 AC 146 ms
42,664 KB
testcase_06 AC 157 ms
42,920 KB
testcase_07 AC 128 ms
41,840 KB
testcase_08 AC 50 ms
37,080 KB
testcase_09 AC 51 ms
37,032 KB
testcase_10 AC 154 ms
43,252 KB
testcase_11 AC 145 ms
42,332 KB
testcase_12 AC 159 ms
43,404 KB
testcase_13 AC 156 ms
43,228 KB
testcase_14 AC 51 ms
36,776 KB
testcase_15 AC 51 ms
37,036 KB
testcase_16 AC 50 ms
36,496 KB
testcase_17 AC 51 ms
37,040 KB
testcase_18 AC 51 ms
36,976 KB
testcase_19 AC 50 ms
36,644 KB
testcase_20 AC 51 ms
36,444 KB
testcase_21 AC 53 ms
37,024 KB
testcase_22 AC 51 ms
37,148 KB
testcase_23 AC 51 ms
37,096 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) ans=-1;
            else ans=n-2;
        }
        System.out.println(ans);
    }
}
0