herofly


私信TA

用户名:pyhero

访问量:16612

签 名:

等  级
排  名 33
经  验 14299
参赛次数 17
文章发表 321
年  龄 0
在职情况 待业
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

while True:
    try:
        st=input()
        ts=st[::-1]
        s=[]
        l=len(st)
        if l==1:
            print(1)
            continue
        for i in range(l):
            for j in range(l-1,i,-1):
                if st[i]==st[j]:
                    if st[i:j+1]==st[i:j+1][::-1]:
                        s.append(j-i+1)
                        break
                if ts[i]==ts[j]:
                    if ts[i:j+1]==ts[i:j+1][::-1]:
                        s.append(j-i+1)
                        break
        print(max(s))      
    except:
        break


 

0.0分

0 人评分

  评论区

  • «
  • »