#149. makeBricks

makeBricks

Background

Description

We want to make a row of bricks that is goal inches long. We have a number of small bricks (1 inch each) and big bricks (5 inches each). Return true if it is possible to make the goal by choosing from the given bricks. This is a little harder than it looks and can be done without any loops. See also: Introduction to MakeBricks

Format

Input

Output

Samples

3 1 8
true
3 1 9
false
3 2 10
true

Limitation

1s, 1024KiB for each test case.