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