#include<stdio.h>
int main()
{
long long int a, b, aa, bb, ans;
scanf("%lld %lld", &a, &b);
aa = (a-1)/2;
bb = (b+1)/2;
ans = ((bb*(bb+1)/2)-(aa*(aa+1)/2))*2;
if(a==1 || a==2) ans-=2;
printf("%lld", ans);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
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 |
- |