WA!
查看原帖
WA!
1430240
guomu楼主2025/1/19 12:47
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int n;
string s,a,b;
bool hw(string x){
	for(int i=0,j=x.length()-1;i<=j;i++,j--){
		if(x[i]!=x[j]) return 0;
	}
	return 1;
}
int main(){
	cin>>n;
	while(n--){
		cin>>s;
		for(int i=2;i<s.length()-1;i++){
			a=s.substr(0,i);
    		b=s.substr(i);
    		if(hw(a)&&hw(b)){
    			cout<<"Yes\n";
    			break;
			}	
		}
		cout<<"No\n";
	}
	return 0;
}

0分求调 菜勿喷 必关

2025/1/19 12:47
加载中...