Codeforces 467A. George and Accommodation solution

Solve in c++:

#include<bits/stdc++.h>
using namespace std;

int main()
{
    int t,p,q,c=0,r,i;
    while(cin>>t)
    {
        for(i=1; i<=t; i++)
        {
            cin>>p>>q;
            r=abs(q-p);
            if(r>=2)
                c++;
        }

        cout<<c<<endl;
        c=0;
    }
}



No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.