AMC 10 · 2006 · #4

Grade 3 arithmetic
digit-sumplace-valueoptimization greedy-algorithm ↑ Prerequisites: digit-sum
📏 Short solution 💡 2 insights
📘 View easy version →
Problem
A digital watch shows an hour and a minute in twelve-hour form. Find the largest possible sum of the digits on the display.

Pick an answer.

(A)
17
(B)
19
(C)
21
(D)
22
(E)
23
How to solve
Strategy Extreme Principle

The display splits cleanly into an hour part and a minute part, so Tool #7 (Identify Subproblems) lets us maximize each part on its own and then add. Tool #14 (Extreme Principle) drives each part to its biggest digit sum — but the catch is that a bigger clock number is not always a bigger digit sum, so we test the boundary cases instead of just grabbing 12. Tool #3 (Eliminate Possibilities) guards against the trap answer that comes from wrongly picking the 12 o'clock hour.

1STEP 1

Split the display into two parts

The two parts are independent, so each can be maximized alone.

total digit sum = (hour digit sum) + (minute digit sum)
2STEP 2

Make the hour digits as big as possible

By digit sum the best hour is 9, not the largest hour.

9 → 9, 10 → 1, 11 → 2, 12 → 3
3STEP 3

Make the minute digits as big as possible

Each minute place has its own ceiling, giving 14.

59 → 5 + 9 = 14
4STEP 4

Add the two best parts

Adding the two best parts gives 23, choice (E).

9 + 14 = 23 → (E)
Answer
23
The display 9 : 59 uses digits 9, 5, 9, and 9 + 5 + 9 = 23, matching (E). No single position can do better: the ones digit is already maxed at 9, the minute tens digit is capped at 5, and no hour beats a lone 9 (since 10,11,12 give digit sums 1,2,3). The biggest possible sum is therefore 9 + 5 + 9 = 23, and it cannot be pushed higher, so choices 17 through 22 are all beaten.
💡Key takeaway

Fatten each spot on its own — the hour 9 (not 12!) plus the minutes 59 give 9 + 5 + 9 = 23.

  • Split the display into two parts
  • Make the hour digits as big as possible
  • Make the minute digits as big as possible
  • Add the two best parts