#include <cstdio>
typedef long long ll;
#define putmin(a,b) ((a)>(b)?(a)=(b):1)
ll calc(ll LH,ll S,ll D,ll L,ll B) {
ll R = 0;
if (S > LH*2) R += (S-LH*2)/(2*LH-L);
S -= R*(2*LH-L);
if (S > LH*2) R++,S -= (2*LH-L);
if (S > LH) D += (++R)*B;
else {
D += R*B-LH; R++;
if (D <= 0) return R;
D += B;
}
if (D > LH*2) { R += (D-LH*2)/(2*LH-B); D -= (D-LH*2)/(2*LH-B)*(2*LH-B); }
return R+1+(D>LH*2);
}
int main() {
ll LH,S,D,L,B,res = 0;
scanf("%lld%lld%lld%lld%lld",&LH,&S,&D,&L,&B);
putmin(res,calc(LH,S,D,L,B));
putmin(res,calc(LH,D,S,B,L));
printf("%lld",res);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |