AMC 10 · 2015 · #21

Grade 6 rate-ratio
floor-functioncasework guess-and-check ↑ Prerequisites: floor-function
📏 Medium solution 💡 3 insights
Problem
Cozy climbs a staircase 2 steps per jump (a single leftover step counts as one more jump), and Dash climbs 5 steps per jump (any leftover of fewer than 5 steps counts as one more jump). For a staircase of n steps, Dash makes exactly 19 fewer jumps than Cozy. Add up every value of n that makes this true, call that sum s, and report the sum of the digits of s.

Pick an answer.

(A)
9
(B)
11
(C)
12
(D)
13
(E)
15

AMC 10 2015 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.

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

Cozy climbs 2 per jump, so ⌈ n/2 ⌉ jumps; Dash climbs 5, so ⌈ n/5 ⌉ jumps — round up, a partial jump still counts.

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

Write the difference equation

"Dash takes 19 fewer jumps than Cozy" means Cozy's jumps minus Dash's jumps equals 19 — write it straight as an equation in n.

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

Estimate by ignoring the rounding

Drop the rounding: treat the counts as n/2 and n/5, so the gap is 3n/10. Setting it to 19 gives n ≈ 63 — the answers sit near 63.

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

Check exact counts near 63

Test the exact rounded counts near 63; rounding makes the gap wobble, so it equals 19 only at 63, 64, 66 — 62, 65, and 67 all miss.

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

Sum the valid sizes and add digits

The staircase sizes that work are 63, 64, and 66. Add them to get s, then add the digits of s.

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