2875: 回文子串 注意时间限制 摘要:参考代码:s = input() + ' ' ans = [] str1 = "" len_1 = 0 len_2 = 0 while len_2 < len(s) // …… 题解列表 2024年03月28日 0 点赞 0 评论 125 浏览 评分:0.0
2875: 回文子串 摘要:解题思路:注意事项:参考代码:s = input().strip()n = len(s)for i in range(2,n-1): a = 0 b = a + i while b …… 题解列表 2024年08月03日 0 点赞 0 评论 95 浏览 评分:0.0
2875: 回文子串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int main( ){ char s[501]={0}; int n,len,beg…… 题解列表 2024年11月14日 0 点赞 0 评论 80 浏览 评分:0.0