This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
cin.tie(0) -> sync_with_stdio(false);
ll L, R; cin >> L >> R;
cout << (R == 1 ? 2 : (R / 2) * (R / 2 + 1)) - (L - 1 == 1 ? 2 : ((L - 1) / 2) * ((L - 1) / 2 + 1));
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |