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<cstdio>
long long a,b;
long long f(long long s,long long t){
long long n=(t-s)/2+1;
return n*(s+t)/2;
}
int main(){
scanf("%lld%lld",&a,&b);
if(a%2)a++;
if(b%2)b--;
if(b<4)puts("0");
else{
if(a<4)a=4;
printf("%lld",f(a,b));
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |