Ahmed_Negm

Untitled

Apr 15th, 2022
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.79 KB | None | 0 0
  1. #include<iostream>
  2. #include<cmath>
  3. #include<iomanip>
  4. #include<algorithm>
  5. #include<cstdlib>
  6. #include<cstring>
  7. #include<vector>
  8. #include<utility>
  9.  
  10. #define ll long long
  11. #define sz(x) int(x.size())
  12. #define all(x) x.begin(),x.end()
  13. using namespace std;
  14.  
  15. void Fast_IO(){
  16.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  17.     #ifndef ONLINE_JUDGE
  18.         freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  19.     #endif
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26. void solve(){
  27.   ll a,b,c; cin>>a>>b>>c;
  28.   ll even_seats = ((max(a,b)) - (min(a,b)))/2;
  29. //   cout<<even_seats;
  30.   if(a%2==0) even_seats +=1;
  31.   if(b%2 == 0 && a%2 != 0) even_seats+=1;
  32.   cout<<even_seats;
  33.  
  34.  
  35.  
  36.  
  37. }
  38.  
  39. int main(){
  40.     Fast_IO();
  41. int t =1;
  42. //cin>>t;
  43. while(t--){
  44. solve();
  45. }
  46. return 0;
  47. }  
Advertisement
Add Comment
Please, Sign In to add comment