結果

問題 No.588 空白と回文
ユーザー u-shou-sho
提出日時 2017-11-04 00:23:11
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 983 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 56,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 20:59:47
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(){
    string S;
    getline(cin, S);
    int ans=0;
    string anS;
    int cnt;
    if(S.length()==1){
        ans=1;
    }else{
        for(int i=1; i<S.length(); i++){
            if(S[i-1]==S[i]){
                anS=S;
                cnt=0;
                for(int j=0; i+j<anS.length() && i-j-1>=0; j++){
                    if(anS[i-j-1]==anS[i+j] && anS[i+j]!=' '){
                        cnt+=2;
                    }
                }
                ans = max(ans, cnt);
            }
            if(S[i-1] == S[i+1]){
                anS=S;
                cnt=0;
                if(S[i]!=' ')cnt++;
                for(int j=1; i+j<anS.length() && i-j>=0; j++){
                    if(anS[i-j]==anS[i+j] && anS[i+j]!=' '){
                        cnt+=2;
                    }
                }
                ans = max(ans, cnt);
            }
        }
    }
    cout<<ans<<endl;
    return 0;
}
0