#include <stdio.h>
int main()
{
long long int a, b, ans, aa, bb;
scanf("%lld %lld", &a, &b);
if(b<3){
printf("0");
return 0;
}
if(a<3) a = 3;
aa = (a-1)/2;
bb = (b+1)/2;
ans = ((bb*(bb+1)/2)-(aa*(aa+1)/2))*2;
printf("%lld", ans);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Correct |
0 ms |
1088 KB |
Output is correct |
4 |
Correct |
0 ms |
1088 KB |
Output is correct |
5 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |