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);
printf("%lld",f(b)-f(a-1));
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... |