Problem · Math
Find the Damaged Toy
At a birthday party, N kids (IDs from 1 to N) sit in a circle. The host has T toys to distribute, starting from kid with ID D and giving one toy at a time in ascending order. After reaching kid N, the count continues from kid 1.
Input
Three integers:
N: Number of kidsT: Number of toysD: Starting kid's ID
Output
Print the ID of the kid who receives the damaged (last) toy.
Examples
01 · Example 1
N = 5 T = 2 D = 1 return = 2
:)
More Goldman Sachs problems
public int findDamagedToy(int N, int T, int D) {
// write your code here
}
N5
T2
D1
expected2
sign in to submit