Clojure programmer 새로운 블로그로 이전되었습니다. 새로운 기술블로그로 Go Go
#!/bin/python3 def saveThePrisoner(n, m, s): res = (m + s - 1) % n if res == 0: res = n return res t = int(input().strip()) for _ in range(t): n, m, s = [int(x) for x in input().strip().split(' ')] result = saveThePrisoner(n, m, s) print(result)
댓글 없음:
댓글 쓰기