| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 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;
}
