宏i


私信TA

用户名:dotcpp0701289

访问量:209

签 名:

等  级
排  名 2025
经  验 2502
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 GZLG
专  业

  自我简介:

解题思路:把m-1个数加到后面之后,删除第一个数即可

注意事项:

参考代码:

while True:

    try:

        n,m = map(int,input().split())

        lst = [i for i in range(1,n+1)]

        while len(lst)!=1:

            for i in range(m):

                if i == m-1:

                    lst.pop(0)

                else:

                    lst.append(lst[0])

                    lst.pop(0)

        print(lst[0])

    except:

        break 

 

0.0分

0 人评分

  评论区

  • «
  • »