网易有道笔试8.3

第四题:

很奇怪不知道为何测试通过了,AC-0%,求解??

#coding=utf-8
# 本题为考试单行多行输入输出规范示例,无需提交,不计分。
import sys 
n = int(sys.stdin.readline().strip())
for _ in range(n):
    s = sys.stdin.readline().strip()
    t = sys.stdin.readline().strip()

    if s == '' or t == '':
        print('NO')
    else:
        add = s+s

        x = ''  
        f = 0
        for i in add:
            if i == '0':
                f = 1
                x += '1'
            elif f == 1:
                x += '0'

        if t in add or t in x:
            print('YES')
        else:
            print('NO')

 

你可能感兴趣的:(Python,算法与数据结构,笔试面经)