CodeFoeces-981A

题目

原题链接:A. Antipalindrome

题意

给出一个字串,问可以截取到最长的非回文串长度。
分三种情况,回文串,非回文串,特殊回文串。

代码

#include
using namespace std;
int main() {
    string s;
    cin>>s;
    int l = s.length();
    int flag = 0;
    for(int i=0; i

你可能感兴趣的:(CodeFoeces-981A)