moonlight


私信TA

用户名:dotcpp0738970

访问量:4909

签 名:

越学越菜

等  级
排  名 348
经  验 5307
参赛次数 0
文章发表 141
年  龄 21
在职情况 学生
学  校 江门职业技术学院
专  业 大数据分析

  自我简介:

TA的其他文章

解题思路:

注意事项:自己看下面的数据

测试数据:

1.

AABCD CDAA

2.

AABCD

CDAA

参考代码:

s = input().split()
if len(s) == 2:
    count = 0
    while count < len(s[0]):
        count += 1
        s[0] = s[0][1:] + s[0][0]
        if s[1] in s[0]:
            print("true")
            break
    else:
        print("false")
else:
    s1 = input().split()
    count = 0
    while count < len(s[0]):
        count += 1
        s[0] = s[0][1:] + s[0][0]
        if s1[0] in s[0]:
            print("true")
            break
    else:
        print("false")


 

0.0分

1 人评分

  评论区

牛的,我写老长时间用了好多方法都是82分,原来是没考虑换行输入,惭愧惭愧
2024-04-01 20:48:23
  • «
  • 1
  • »