結果

問題 No.588 空白と回文
ユーザー rpy3cpprpy3cpp
提出日時 2017-11-03 23:13:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 1,472 ms
コンパイル使用メモリ 167,896 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 14:53:37
合計ジャッジ時間 2,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int calc(int m, const string & S){
    int ans = 1;
    for (int a = m - 1, b = m + 1; a >= 0 and b < S.size(); --a, ++b){
        if (S[a] == S[b]) ans += 2;
    }
    return ans;
}

int calc2(int n, const string & S){
    int ans = 0;
    for (int a = n, b = n + 1; a >= 0 and b < S.size(); --a, ++b){
        if (S[a] == S[b]) ans += 2;
    }
    return ans;
}

int main(){
    string S;
    cin >> S;
    int ans = 0;
    for (int m = 0; m < S.size(); ++m){
        ans = max(ans, calc(m, S));
    }
    for (int n = 0; n + 1 < S.size(); ++n){
        ans = max(ans, calc2(n, S));
    }
    cout << ans << endl;
    return 0;
}
0