結果

問題 No.599 回文かい
ユーザー nebukuro09nebukuro09
提出日時 2017-11-24 22:34:53
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 94,308 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-03 17:00:00
合計ジャッジ時間 3,312 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 90 ms
4,380 KB
testcase_15 AC 6 ms
4,376 KB
testcase_16 AC 519 ms
4,376 KB
testcase_17 AC 620 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 WA -
testcase_20 AC 2 ms
4,380 KB
evil_0.txt AC 40 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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 MOD = 10^^9 + 7;

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

    auto mem = new long[](N);
    mem.fill(-1);

    long dfs(int l) {
        if (l >= N/2)
            return 0;
        if (mem[l] >= 0)
            return mem[l];

        int r = N - l - 1;
        long ret = 0;
        foreach (i; l..N/2) {
            if (S[l..i+1] == S[N-i-1..r+1]) {
                (ret += dfs(i+1) + 1) %= MOD;
            }
        }
        mem[l] = ret;
        return ret;
    }

    writeln(dfs(0)+1);
}
0