Pass the Pillow

There are n people standing in a line labeled from 1 to n. The first person in the line is holding a pillow initially. Every second, the person holding the pillow passes it to the next person standing in the line. Once the pillow reaches the end of the line, the direction changes, and people continue passing the pillow in the opposite direction.

  • For example, once the pillow reaches the n^th person they pass it to the n - 1^th person, then to the n - 2^th person and so on.

Given the two positive integers n and time, return the index of the person holding the pillow after time seconds.

Note: This question is the same as 3178: Find the Child Who Has the Ball After K Seconds.

Example 1
Inputn = 4, time = 5
Output2
People pass the pillow as 1 -> 2 -> 3 -> 4 -> 3 -> 2, so after five seconds person 2 is holding it.
Example 2
Inputn = 3, time = 2
Output3
People pass the pillow as 1 -> 2 -> 3, so after two seconds person 3 is holding it.

Constraints

  • 2 <= n <= 1000
  • 1 <= time <= 1000

Asked at 3 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate