풀이 썸네일형 리스트형 정올 종교 Solution import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 종교 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int cnt = 0; int[] arr = new int[m]; int[] arr2 = new int[m]; boolean[] p = new boolean[n+1]; Queue q = new LinkedList(); for (int i = 0; i < m; i++) { arr[i] = sc.nextInt(); arr2.. 더보기 이전 1 다음