結果

問題 No.588 空白と回文
ユーザー nebukuro09nebukuro09
提出日時 2017-11-03 22:38:34
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 109,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 22:17:36
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

const long INF = 1L << 59;

void main() {
    auto S = readln.chomp;
    auto N = S.length.to!int;

    int ans = 1;
    for (int i = 0; i < N; ++i) {
        int tmp = 1;
        for (int j = 1; i - j >= 0 && i + j < N; ++j) {
            if (S[i+j] == S[i-j]) tmp += 2;
        }
        ans = max(ans, tmp);
    }

    for (int i = 0; i < N - 1; ++i) {
        int l = i;
        int r = i + 1;
        int tmp = 0;
        for (int j = 0; l - j >= 0 && r + j < N; ++j) {
            if (S[l-j] == S[r+j]) tmp += 2;
        }
        ans = max(ans, tmp);
    }
    ans.writeln;
}
0