This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
long long f(long long k)
{
    if(k%2ll==1ll) k--;
    int kk=k/2ll;
    return kk*(kk+1ll);
}
int main()
{
    long long a,b;
    scanf("%lld%lld",&a,&b);
  long long res = f(b)-f(a-1);
  if(a <= 2 && 2 <= b) res -= 2;
    printf("%lld",res);
    return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... |