Here is Python solution:
def solve(n): count = 0 while n - 500 >= 0: n -= 500 count += 1 while n - 200 >= 0: n -= 200 count += 1 while n - 100 >= 0: n -= 100 count += 1 while n - 50 >= 0: n -= 50 count += 1 while n - 20 >= 0: n -= 20 count += 1 while n - 10 >= 0: n -= 10 count += 1 if n != 0: return -1 return count
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Where hackers, sticks, weekend warriors, pros, architects and wannabes come together
Here is Python solution: