In a game of Bash Bing, a player can score 6 points, 9 points, or 20 points. What is the greatest possible integer that a player cannot achieve in a game of Bash Bing?
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.
First lets eliminate any of the answer options that we can actually create:
(20 * 0) + (9 * 1) + (6 * 9) = 63
(20 * 1) + (9 * 1) + (6 * 3) = 47
(20 * 1) + (9 * 1) + (6 * 5) = 59
(20 * 2) + (9 * 1) + (6 * 2) = 61
That leaves 2 options, 31 and 43; the higher of which is our answer: 43