16letrunghieu01
Rating
-
Bài tập
1
Điểm
1001
Rating #
-
Điểm #
19218
Giới thiệu
include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
long long n,r,l,dem=0;
cin >> l >> r >> n;
for (long i=1; i<=(n+1)/2; ++i){
if (i>l&i<r)
if (n-i>l&&n-i<r){
dem++;
}
}
cout << dem;
}