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