PTA 乙级 1003 我要通过! (20分)
Posted scp-514
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA 乙级 1003 我要通过! (20分)相关的知识,希望对你有一定的参考价值。
1 num = eval(input()) 2 an = [] 3 for i in range(0,num): 4 str = input() 5 P = str.count(‘P‘) 6 T = str.count(‘T‘) 7 A = str.count(‘A‘) 8 sum = P+T+A 9 #print(sum) 10 #print(len(str)) 11 if P!=1 or T!=1 or sum!=len(str) or A == 0: 12 an.append(‘NO‘) 13 continue 14 ap = str.find(‘P‘) 15 t = str.find(‘T‘) 16 pt = t - ap - 1 17 ta = len(str) - t - 1 18 if(ap*pt == ta and ap >= 0): 19 an.append(‘YES‘) 20 else: 21 an.append(‘NO‘) 22 23 for i in range(0,num): 24 print(an[i])
以上是关于PTA 乙级 1003 我要通过! (20分)的主要内容,如果未能解决你的问题,请参考以下文章