Your job is to solve this problem in general. Depending on the parameters of the problem, the snail will eventually either leave the well or slide back to the bottom of the well. (In other words, the snail's height will exceed the height of the well or become negative.) You must find out which happens first and on what day.
Input
The input file contains one or more test cases, each on a line by itself. Each line contains four integers H, U, D, and F, separated by a single space. If H = 0 it signals the end of the input; otherwise, all four numbers will be between 1 and 100, inclusive. H is the height of the well in feet, U is the distance in feet that the snail can climb during the day, D is the distance in feet that the snail slides down during the night, and F is the fatigue factor expressed as a percentage. The snail never climbs a negative distance. If the fatigue factor drops the snail's climbing distance below zero, the snail does not climb at all that day. Regardless of how far the snail climbed, it always slides D feet at night.
Output
For each test case, output a line indicating whether the snail succeeded (left the well) or failed (slide back to the bottom) and on what day. Format the output exactly as shown in the example.
Sample Input
6 3 1 10
10 2 1 50
50 5 3 14
50 6 4 1
50 6 3 1
1 1 1 1
0 0 0 0
Sample Output
success on day 3
failure on day 4
failure on day 7
failure on day 68
success on day 20
failure on day 2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | import java.util.*; import java.lang.*; import java.math.*; public class Q6{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); String line = System.getProperty("line.separator"); scan.useDelimiter(line); int x=0; while (true){ String init = scan.next(); String [] get = init.split(" "); if(init.equals("0 0 0 0")){ break; } int well = Integer.parseInt(get[0]); float hei = Integer.parseInt(get[1]); float slid = Integer.parseInt(get[2]); float perce = Integer.parseInt(get[3]); float total =0; int day= 1; float less = hei*(perce/100); while(true){ if(day != 1){ hei = hei-less; } total = total+hei; if(total>well){ System.out.println("success on day "+(day)); break; } total =total - slid; if(total<0){ System.out.println("failure on day "+(day)); break; } day++; } x++; } } } |
No comments:
Post a Comment