def test(a): x=-1 y=-1 for i in range(len(a)): if a[i]=='P': x=i if a[i]=='T': y=i if x == -1 or y == -1: return 0 if x>y: return 0 if x+1 == y: return 0 b=a[:x] if x!=0 else[] c=a[x+1:y] d=a[y+1:] if y!=len(a)-1 else[] if not all(i=='A' for i in b): return 0 if not all(i=='A' for i in c): return 0 if not all(i=='A' for i in d): return 0 return 1 if d == b * len(c) else 0 n=input() for i in range(int(n)): s=input() if test(s) == 1: print('YES') else: print('No') 我的代码哪里出了问题???
时间: 2024-04-17 14:25:43 浏览: 76
numpy-mnist:使用numpy使用简单FNN对MNIST进行分类
你的代码中没有明显的错误,但有一处不一致之处需要注意。在最后输出结果时,你使用了 `'No'` 来表示不满足条件,而原始代码中使用了 `'NO'`。请确保输出的结果与原始代码一致。
以下是修正后的代码:
```python
def test(a):
x = -1
y = -1
for i in range(len(a)):
if a[i] == 'P':
x = i
if a[i] == 'T':
y = i
if x == -1 or y == -1:
return 0
if x > y:
return 0
if x + 1 == y:
return 0
b = a[:x] if x != 0 else []
c = a[x + 1:y]
d = a[y + 1:] if y != len(a) - 1 else []
if not all(i == 'A' for i in b):
return 0
if not all(i == 'A' for i in c):
return 0
if not all(i == 'A' for i in d):
return 0
return 1 if d == b * len(c) else 0
n = input()
for i in range(int(n)):
s = input()
if test(s) == 1:
print('YES')
else:
print('NO')
```
希望这次能够顺利运行!
阅读全文