DWITE Online Computer Programming Contest, October 2009, Problem 1
Having decided to capitalize on your awesome programming skills, you've set out to create and sell a mobile application at per copy. Since the application is hosted and distributed through a managed platform, the store gets to keep from each sale.
Given that you have an idea of how much profit you want to make off your hard work, at least how many s of copies must be sold? (That is, the answer is rounded to the next ).
The input will contain 5 lines, integers , the minimum profit you want to keep.
The output will contain 5 lines, integer value of the number of copies needed to be sold, rounded to the next .
For example: if you want to make , then . ( copies will earn below ). rounded to the next is ; thus the answer is .
Sample Input
0
1
693
694
250000
Sample Output
0
1000
1000
2000
361000
Problem Resource: DWITE
Comments