boj - 1920 수 찾기(자바)

SlowAnd·2023년 12월 31일
0

https://www.acmicpc.net/problem/1920

public class boj_1920 {
    public static void main(String[] args) throws IOException {
        BufferedReader r = new BufferedReader(new InputStreamReader(System.in));

        r.readLine(); // 첫 번째 줄(배열 크기)은 무시
        Set<String> targetSet = Arrays.stream(r.readLine().split(" "))
                .collect(Collectors.toSet()); // Set으로 변환

        r.readLine(); // 세 번째 줄(배열 크기)은 무시
        Arrays.stream(r.readLine().split(" "))
                .mapToInt(n -> targetSet.contains(n) ? 1 : 0) // 각 요소가 targetSet에 있는지 확인
                .forEach(System.out::println);

    }
}

0개의 댓글