DWITE '09 R1 #1 - iProfits

View as PDF

Submit solution

Points: 3
Time limit: 2.0s
Memory limit: 64M

Problem type
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 $0.99 per copy. Since the application is hosted and distributed through a managed platform, the store gets to keep 30% 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 1000s of copies must be sold? (That is, the answer is rounded to the next 1000).

The input will contain 5 lines, integers 0N1000000, 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 1000.

For example: if you want to make $1000, then (1444 copies×$0.99)30%=$1000.692. (1443 copies will earn below $1000). 1444 rounded to the next 1000 is 2000; thus the answer is 2000.

Sample Input

Copy
0
1
693
694
250000

Sample Output

Copy
0
1000
1000
2000
361000

Problem Resource: DWITE

Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported

Comments

There are no comments at the moment.