Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91953 万隽宇 31回文字符串II C++ Wrong Answer 1 MS 280 KB 732 2024-09-26 19:06:52

Tests(5/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; string a; bool FUN(int left,int right){ int len=(right-left+1)/2; for(int i=0;i<len;i++){ if(a[left+i]!=a[right-i]){ return false; } return true; } } int main(){ cin>>a; int len=a.length(); for(int i=0;i<len-1;i++){ for(int j=len-1;j>i;j--){ if(FUN(i,j)&&(j-i!=1)){ cout<<"Yes"; return 0; } } } cout<<"no"; return 0; }


Run Info:

------Input------
aa
------Answer-----
No
------Your output-----
no