난이도: Silver 4
프로그래밍 언어: Kotlin
문제명: 듣보잡
푼일자: 2022년 1월
주소: https://www.acmicpc.net/problem/1764
문제풀기
fun main() = with(System.`in`.bufferedReader()) {
val set = mutableSetOf<String>()
val list = mutableListOf<String>()
val (N, M) = readLine().split(' ').map { it.toInt() }
repeat(N) { set.add(readLine()) }
repeat(M) {
val s = readLine()
if (set.contains(s)) list.add(s)
}
val sb = StringBuilder().appendLine(list.size)
list.sorted().forEach { sb.appendLine(it) }
print(sb)
}
반응형