# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1222000 | hyakup | 상형문자열 (IOI24_hieroglyphs) | C++20 | 0 ms | 0 KiB |
#include "hieroglyphs.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> ucs(vector<int> a, vector<int> b) {
int n = a.size(), m = b.size();
for( int i = 0; i < n; i++ ) if( a[i] != b[i] ) return false;
return true;
}