URI Online Judge | 1030 Flavious Josephus Legend

时间:2016-10-08 18:25:15

标签: algorithm python-3.x adhoc

抱歉打扰所有人。我在下面的代码中遇到了运行时错误,但我的计算机运行没有错。我真的不知道什么是错的。

非常感谢任何评论,谢谢。

NC = eval(input())

for i in range(0, NC):
    n, k = map(int, input().split())
    Circle = list(range(1, n+1))

    index = k - 1
    while len(Circle) > 1:
        Circle.pop(index)
        index = index + (k - 1)
        if index >= len(Circle):
            index %= len(Circle)
    print ("Case %d: %d" % (i+1, Circle[0]))

Online judge result

0 个答案:

没有答案