# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1242714 | mohamedboukerche55 | Split the Attractions (IOI19_split) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
using ll = long long ;
vector<int> finode_split(int n, int a, int b, int c, vector<int> p, vector<int> q)
{
vector<int>ans;
if(a == b == c)
{
return p;
}
else
{
return q;
}
return ans;
}