Codeforces 116A. Tram Solution


Solve in C++:

//AH Tonmoy
//Department of CSE ,Islamic University

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a,b,r[10000]= {0},n,i,m=0;
    while(cin>>n)
    {
        m=0;
        for(i=0; i<n; i++)
        {
            cin>>a>>b;
            m=m+b-a;
            r[i]=m;
        }
        sort(r,r+n);
        cout<<r[n-1]<<endl;
    }

}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.