結果

問題 No.1617 Palindrome Removal
ユーザー khm_nkkhm_nk
提出日時 2021-07-22 23:13:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 168,056 KB
実行使用メモリ 7,184 KB
最終ジャッジ日時 2024-07-17 19:58:13
合計ジャッジ時間 2,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  string S, s;
  cin >> S;
  int N = S.size();
  for(int i=0; i<N; i++)  s.push_back(S.at(N-1-i));
  int ans=-1;
  
  if(N>1 && N%2==1){
    if(S!=s) ans = S.size();
    else if(N>2) ans = N-2;
      
    else{
      S.erase(S.begin() + (N/2) -1);
      s.erase(s.begin() + (N/2) -1);
       if(S!=s) ans = 0;
    } 
  }
  else if(N>1 && N%2==0) ans=0;
  
  cout << ans << endl;
  
}
0