import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] arr = new int[31];
// arr에 출석번호 채우기
for (int i = 0; i < 28; i++) {
int num = sc.nextInt();
arr[num] = 1;
}
// 출선번호 부르면서 출석번호 범인 찾기
for (int i = 1; i < 31; i++) {
if(arr[i] != 1) {
System.out.println(i);
}
}
sc.close();
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 1546번 (0) | 2023.01.21 |
---|---|
[백준] 3052번 (0) | 2023.01.20 |
[백준] 2562번 (0) | 2023.01.20 |
[백준] 10818번 (0) | 2023.01.20 |
[백준] 10871번 (0) | 2023.01.20 |