이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |