結果

問題 No.599 回文かい
ユーザー Bioinfo_KBioinfo_K
提出日時 2017-11-25 11:06:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 291 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 109,440 KB
最終ジャッジ日時 2024-05-05 12:28:22
合計ジャッジ時間 8,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 46 ms
53,504 KB
testcase_04 AC 55 ms
59,264 KB
testcase_05 AC 68 ms
63,232 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 40 ms
53,632 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 49 ms
60,928 KB
testcase_10 AC 61 ms
75,520 KB
testcase_11 AC 60 ms
75,136 KB
testcase_12 AC 70 ms
75,520 KB
testcase_13 AC 74 ms
75,904 KB
testcase_14 AC 1,284 ms
103,680 KB
testcase_15 AC 165 ms
76,928 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,collections
mod = 10**9+7
sys.setrecursionlimit(mod)

s= input()
d = collections.defaultdict(lambda: 1)
def DFS(s):
    if s in d:
        return d[s]
    for i in range(1,len(s)//2+1):
        if s[:i] == s[-i:]:
            d[s] += DFS(s[i:-i])
    return d[s]
print(DFS(s)%mod)
0