結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,624 KB
testcase_01 AC 41 ms
157,568 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 46 ms
59,776 KB
testcase_05 AC 55 ms
63,104 KB
testcase_06 AC 42 ms
53,120 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 49 ms
60,832 KB
testcase_10 AC 59 ms
75,008 KB
testcase_11 AC 56 ms
75,184 KB
testcase_12 AC 65 ms
75,300 KB
testcase_13 AC 71 ms
76,244 KB
testcase_14 AC 1,161 ms
104,192 KB
testcase_15 AC 155 ms
77,056 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 43 ms
53,888 KB
testcase_19 AC 43 ms
54,144 KB
testcase_20 AC 44 ms
54,144 KB
evil_0.txt AC 865 ms
195,100 KB
権限があれば一括ダウンロードができます

ソースコード

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