# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1233586 | Account | Hieroglyphs (IOI24_hieroglyphs) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
vector<int> ucs(vector<int> a, vector<int> b){
vector<int> r;
if (a == b){
return a;
}
return -1;
}