結果

問題 No.1617 Palindrome Removal
ユーザー ぷらぷら
提出日時 2021-07-22 21:24:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 204,016 KB
実行使用メモリ 6,420 KB
最終ジャッジ日時 2024-07-17 16:14:55
合計ジャッジ時間 3,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
6,188 KB
testcase_01 AC 36 ms
6,412 KB
testcase_02 AC 34 ms
6,316 KB
testcase_03 AC 34 ms
6,064 KB
testcase_04 AC 39 ms
6,416 KB
testcase_05 AC 30 ms
5,808 KB
testcase_06 AC 57 ms
6,288 KB
testcase_07 AC 35 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 53 ms
6,188 KB
testcase_11 AC 47 ms
5,680 KB
testcase_12 AC 58 ms
6,420 KB
testcase_13 AC 59 ms
6,412 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 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    string S;
    cin >> S;
    string T = S;
    reverse(T.begin(),T.end());
    string R = S;
    sort(R.begin(),R.end());
    if(S == T) {
        if(S.size() == 3 || (S.size()%2 && R.front() == R.back())) {
            cout << -1 << endl;
        }
        else if(R.front() == R.back()) {
            cout << 0 << endl;
        }
        else {
            cout << S.size()-2 << endl;
        }
    }
    else {
        cout << S.size() << endl;
    }
}
0