本文主要是介绍1003. 我要通过!(20) PAT乙级,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
传送门
#include<stdio.h>
#include<string.h>#define MAX_N 110int main(){int n;char str[MAX_N];scanf("%d",&n);getchar();for(int k=0;k<n;k++){int count_p=0,count_t=0,other=0;int pos_p=0,pos_t=0;gets(str);int len=strlen(str);for(int i=0;i<len;i++){if(str[i]=='P'){count_p++;pos_p=i;}else if(str[i]=='T'){count_t++;pos_t=i;}else if(str[i]!='A') other++;}if(count_p!=1||count_t!=1||other!=0||(pos_t-pos_p<=1)){printf("NO\n");continue;}int x=pos_p,y=pos_t-pos_p-1,z=len-pos_t-1;if(z-(y-1)*x==x){printf("YES\n");}else{printf("NO\n");}}
}
这篇关于1003. 我要通过!(20) PAT乙级的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!