Baekjoon 10816.숫자 카드 2 c++ [Silver IV]
·
Baekjoon/Silver
unordered_map메모리시간43828KB488ms#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int N; cin >> N; unordered_map numbers; while (N--) { int i; cin >> i; numbers[i]++; } int M; cin >> M; while (M--) { int check; cin >> check; cout 이진탐색메모리시간5936..