
Event Time
Adapted by Neilor Tonin, URI Brazil
Peter is organizing an event in his University. The event will be in April month, beginning and finishing within April month. The problem is: Peter wants to calculate the event duration in seconds, knowing obviously the begin and the end time of the event.
You know that the event can take from few seconds to some days, so, you must help Peter to compute the total time corresponding to duration of the event.
Input
The first line of the input contains information about the beginning day of the event in the format: “Dia xx”. The next line contains the start time of the event in the format presented in the sample input. Follow 2 input lines with same format, corresponding to the end of the event.
Output
Your program must print the following output, one
information by line, considering that if any
information is null for example, the number 0 must
be printed in place of W, X, Y or Z:
W dia(s)
X hora(s)
Y minuto(s)
Z
segundo(s)
Obs: Consider that the event of the test case
have the minimum duration of one minute. “dia”
means day, “hora” means hour, “minuto” means
minute and “Segundo” means second in
Portuguese.
Input Sample | Output Sample |
Dia 5 |
3 dia(s) |
URI - BEECROWD Online Judge 1061 Solve in C :
//Solved by Intesar#include <stdio.h>
int main(){ int s,s1,m,m1,h,h1,d,d1; scanf("Dia %d",&d); scanf("%d : %d : %d\n",&h,&m,&s); scanf("Dia %d",&d1); scanf("%d : %d : %d",&h1,&m1,&s1);
s=s1-s; m=m1-m; h=h1-h; d=d1-d;
if(s<0) { s+=60; m--; } if(m<0) { m+=60; h--; } if(h<0) { h+=24; d--; } printf("%d dia(s)\n", d); printf("%d hora(s)\n", h); printf("%d minuto(s)\n", m); printf("%d segundo(s)\n", s);
return 0;}
0 Comments