| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1359595 | FZ_Laabidi | Bikeparking (EGOI24_bikeparking) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
signed main(){
int n; cin >> n;
vector<int> x(n), y(n);
for(int i=0; i<n; i++)cin >> x[i];
for(int i=0; i<n; i++)cin >> y[i];
cout << abs(y[0]-x[0])
}