Jan 28, 2026 Round 1 · afternoon

Problem 6 · The kangaroo's jumps

A Fibonacci-style recurrence: $f(n) = f(n-1) + f(n-3)$.

Integer answer, at most 4 digits

A kangaroo moves along a straight line making forward jumps of one metre or three metres. If it wants to move exactly 10 metres, in how many different ways can it do so? (The same combination of jumps in a different order counts as a different way; e.g. the sequences $\{3,3,3,1\}$ and $\{1,3,3,3\}$ are different.)

Copa Cangur · SCM Medium Closed answer