Source Code
#include <fstream>
#include <stdio.h>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <math.h>
#include <iomanip>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <array>
#include <set>
using namespace std;


int main()
{
    int _;
    cin>>_;
    while (_--)
    {
        long long n,a,b,mx=0;
        cin>>n;
        pair<long long,long long> p[n];
        for(int i=0;i<n; i++)
        {
            cin>>a;
            p[i].first=a;
        }

        for(int i=0; i<n; i++)
        {
            cin>>b;
            p[i].second=b;
        }

        for(int i=0; i<n; i++)
        {
            if(p[i].first < p[i].second)
            {
                int x=p[i].second-p[i].first;
                if(mx<x)
                    mx=x;
            }
        }
        cout<<mx<<endl;
    }
}
Copy
Garden Walls Abbro
GNU G++17
140 ms
3.4 MB
Accepted