High Score

A game is played with the integers 0 through 11 as follows:

  1. You may start by circling any of the twelve numbers.
  2. You can then circle any uncircled number which is congruent (mod 12) to an integer multiple of the current number.
  3. Step 2 is repeated until no more numbers can be circled.
  4. Your score is equal to the sum of all numbers that have been circled.

What is the maximum score you can achieve?


The answer is 48.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Patrick Corn
May 10, 2018

We can circle the numbers 1 , 5 , 7 , 11 , 2 , 10 , 4 , 8 , 0 1,5,7,11,2,10,4,8,0 in that order, for a final score of 48. 48. This only misses the numbers 3 , 6 , 9. 3,6,9.

The key fact is: if a a is the current number and b b is the next number circled, then gcd ( a , 12 ) gcd ( b , 12 ) . \gcd(a,12) | \gcd(b,12).

So we can only circle 3 3 or 9 9 from a starting point of 1 , 5 , 7 , 1,5,7, or 11 11 . Once we circle 3 3 or 9 , 9, we can only circle 3 , 6 , 9 , 0 3,6,9,0 before finishing. So the best we could do by circling 3 3 or 9 9 would be 1 , 5 , 7 , 11 , 3 , 6 , 9 , 0 , 1,5,7,11,3,6,9,0, which sums to 42. 42. So the maximal-score game must avoid circling 3 3 and 9. 9.

As for 6 , 6, we can circle it from anywhere except 4 4 and 8 8 ; but once we circle it, we can only circle 0 0 and then finish. So if we circle 6 , 6, we can't circle 4 4 and 8. 8. We've already decided that we must skip 3 3 and 9 , 9, so skipping 4 4 and 8 8 as well would result in a max score of 0 + 1 + 2 + 5 + 6 + 7 + 10 + 11 = 42 , 0+1+2+5+6+7+10+11=42, which is smaller than our already achieved score of 48. 48. Hence we must skip 6 6 as well. Thus 48 \fbox{48} is the maximum achievable score.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...