AMC 10 · 2015 · #21

Grade 6 number-theory
floor-functioncasework guess-and-check ↑ Prerequisites: floor-function
📏 Medium solution 💡 3 insights
Problem
Two climbers take different step sizes and their jump counts differ by a fixed amount. Add the digits of the total of the sizes.

Pick an answer.

(A)
9
(B)
11
(C)
12
(D)
13
(E)
15
How to solve
Strategy Convert to Algebra

Tool #4 (Introduce a Variable) names the staircase size n. The hidden idea is that a jumper who needs a final partial jump still spends a whole jump, so the jump counts are the round-up divisions ⌈ n/2 ⌉ and ⌈ n/5 ⌉; Tool #13 (Convert to Algebra) turns the sentence "Dash takes 19 fewer jumps" into the single equation ⌈ n/2 ⌉ - ⌈ n/5 ⌉ = 19. Because the ceilings are awkward to solve head-on, Tool #9 (Solve an Easier Related Problem) first drops the rounding to get the clean rate equation n/2 - n/5 = 19, which locates the answer near n = 63. Tool #6 (Guess and Check) then tests the exact (rounded) counts in a short window around 63, and Tool #2 (Make a Systematic List) collects every n that lands on a difference of exactly 19, since the rounding makes the difference wobble instead of climb smoothly.

1STEP 1

Count each jumper's jumps

Each jump count is a rounding up.

Cozy = ⌈ n/2 ⌉ jumps, Dash = ⌈ n/5 ⌉ jumps
2STEP 2

Write the difference equation

The condition is one plain difference.

⌈ n/2 ⌉ - ⌈ n/5 ⌉ = 19
3STEP 3

Estimate by ignoring the rounding

Ignoring the rounding locates the answer.

n/2 - n/5 = 3n/10 = 19 → n ≈ 190/3 ≈ 63
4STEP 4

Check exact counts near 63

Only three sizes survive the exact check.

⌈ n/2⌉ - ⌈ n/5⌉ = 19 for n = 63, 64, 66 only
5STEP 5

Sum the valid sizes and add digits

Their digit total is 13, choice (D).

s = 63 + 64 + 66 = 193, 1 + 9 + 3 = 13 → (D)
Answer
13
The estimate n ≈ 63 from the smooth rate sits right inside the found set {63, 64, 66}, which is a strong consistency signal. Spot-check n = 66 from scratch: Cozy needs 33 jumps (33 × 2 = 66 exactly), Dash needs 14 jumps (13 jumps cover 65 steps, and the last single step costs jump 14), and 33 - 14 = 19. The gap really does dip back to 19 at 66 because Dash picks up an extra jump there. The total s = 193 has digit sum 13, matching choice (D); the smaller choices (A) 9 through (C) 12 would each come from missing one of the three valid staircases.
💡Key takeaway

Count jumps by rounding the division up, turn "19 fewer" into one equation, estimate where the answer lives by ignoring the rounding, then check nearby whole numbers — because the rounding makes the gap wobble, more than one staircase can work.

  • Count each jumper's jumps
  • Write the difference equation
  • Estimate by ignoring the rounding
  • Check exact counts near 63
  • Sum the valid sizes and add digits