結果
問題 | No.1617 Palindrome Removal |
ユーザー | merlin |
提出日時 | 2021-07-22 21:55:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 3,711 ms |
コンパイル使用メモリ | 77,536 KB |
実行使用メモリ | 54,560 KB |
最終ジャッジ日時 | 2024-07-17 17:39:23 |
合計ジャッジ時間 | 7,374 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 152 ms
43,236 KB |
testcase_01 | AC | 161 ms
43,864 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 161 ms
43,624 KB |
testcase_05 | AC | 143 ms
42,564 KB |
testcase_06 | AC | 160 ms
43,528 KB |
testcase_07 | AC | 133 ms
42,488 KB |
testcase_08 | AC | 49 ms
37,112 KB |
testcase_09 | AC | 50 ms
37,092 KB |
testcase_10 | AC | 156 ms
43,060 KB |
testcase_11 | AC | 132 ms
42,696 KB |
testcase_12 | AC | 158 ms
43,476 KB |
testcase_13 | AC | 166 ms
43,452 KB |
testcase_14 | AC | 52 ms
36,828 KB |
testcase_15 | AC | 50 ms
36,716 KB |
testcase_16 | AC | 50 ms
37,104 KB |
testcase_17 | AC | 50 ms
36,984 KB |
testcase_18 | AC | 51 ms
37,040 KB |
testcase_19 | AC | 51 ms
36,772 KB |
testcase_20 | AC | 52 ms
36,884 KB |
testcase_21 | AC | 53 ms
37,108 KB |
testcase_22 | AC | 52 ms
36,900 KB |
testcase_23 | AC | 50 ms
37,112 KB |
ソースコード
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-1; } else ans=n-2; } System.out.println(ans); } }