삐까냥의 파도타기
1764번) 듣보잡 본문
문제 출처 : https://www.acmicpc.net/problem/1764
import java.util.Collections; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; public class Q1764 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int noListen = sc.nextInt(); int noSee = sc.nextInt();
HashSet<String> noListenList = new HashSet<String>(); for ( int i = 0; i < noListen; i++ ) { noListenList.add(sc.next()); }
LinkedList<String> nono = new LinkedList<String>(); for ( int i = 0; i < noSee; i++ ) { String temp = sc.next(); if ( noListenList.contains(temp) ) { nono.add(temp); } } Collections.sort(nono); System.out.println(nono.size()); for ( int i = 0; i < nono.size(); i++ ) { System.out.println(nono.get(i)); } } } |
'코딩 > 백준 알고리즘' 카테고리의 다른 글
9933번) 민균이의 비밀번호 (0) | 2017.11.11 |
---|---|
9935번) 문자열 폭발 (0) | 2017.11.11 |
2941번) 크로아티아 알파벳 (0) | 2017.11.11 |
2743번) 단어 길이 재기 (0) | 2017.11.11 |
1032번) 명령 프롬프트 (0) | 2017.11.11 |