문제
https://www.acmicpc.net/problem/17219
걸린 시간
00 : 26 : 10
풀이
C++
#include <bits/stdc++.h>
#define INF 987654321
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
int n, m; // 저장된 사이트 수, 찾으려는 주소 수
cin >> n >> m;
map<string, string> notepad;
string address, password;
for(int i = 0; i < n; i++){
cin >> address >> password;
notepad.insert(make_pair(address, password));
}
for(int i = 0; i < m; i++){
cin >> address;
cout << notepad[address] << "\n";
}
return 0;
}
표준 입력 코딩 실수로 20분동안 삽질한 문제. cin >> n, m
'Baekjoon' 카테고리의 다른 글
Baekjoon 1932번 정수 삼각형 (0) | 2020.08.30 |
---|---|
Baekjoon 1149번 RGB거리 (0) | 2020.08.30 |
Baekjoon 17626번 Four Squares (0) | 2020.08.29 |
Baekjoon 11727번 2xn 타일링 2 (0) | 2020.08.28 |
Baekjoon 9375번 패션왕 신해빈 (0) | 2020.08.28 |
댓글