結果

問題 No.1617 Palindrome Removal
ユーザー 山D山D
提出日時 2021-07-29 18:46:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 68,480 KB
実行使用メモリ 5,424 KB
最終ジャッジ日時 2024-09-14 15:35:44
合計ジャッジ時間 2,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 24 ms
5,376 KB
testcase_02 AC 22 ms
5,376 KB
testcase_03 AC 22 ms
5,376 KB
testcase_04 AC 24 ms
5,376 KB
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 19 ms
5,376 KB
testcase_12 AC 24 ms
5,424 KB
testcase_13 AC 24 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
using namespace std;
#define rep(i,s,n) for (int i=s;i<n;i++)
int main(){

  string S;cin>>S;
  int n=S.length();
  int bef=S[0];
  bool kaibun=true,same=true;
  rep(i,0,n/2){
    if(S[i]!=S[n-1-i]){
      kaibun=same=false;
      break;
    }
    if(bef!=S[i] || bef!=S[n-1-i]){
      same=false;
    }
    bef=S[i];
  }
  if((n%2)&&bef!=S[n/2])same=false;
  if(same){
    if(n>1)
    cout<<0;
    else
    cout<<-1;
  }else if(kaibun){
    if(n>3)
    cout<<n-2;
    else
    cout<<-1;
  }else{
    cout<<n;
  }cout<<endl;
}
0