比赛 |
20151019 |
评测结果 |
WWWWWWWWWW |
题目名称 |
爬山 |
最终得分 |
0 |
用户昵称 |
devil |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2015-10-19 21:11:31 |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=1010;
const int maxm=10000010;
const int mod=1000000007;
int main()
{
freopen("mountain.in","r",stdin);
freopen("mountain.out","w",stdout);
//clock_t st=clock();
ll n,d,a,b;
scanf("%lld%lld%lld%lld",&n,&d,&a,&b);
ll ans=b-a+d*n;
printf("%lld\n",ans/(2*d));
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}