#include <stdio.h>
int main ()
{
long long int n, m;
scanf ("%lld %lld", &n, &m);
long long int sol;
if (n % 2 == 1)
--n;
if (m % 2 == 1)
--m;
sol = ((m / 2) + 1) * m / 2 - ((n / 2) + 1) * n / 2;
printf ("%lld", sol);
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 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |