抱歉打扰所有人。我在下面的代码中遇到了运行时错误,但我的计算机运行没有错。我真的不知道什么是错的。
非常感谢任何评论,谢谢。
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]))