less than 1 minute read

문제

여기를 눌러 문제를 확인하세요.

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import java.util.Scanner;
import java.util.Vector;

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		Vector<Integer> checkL = new Vector<Integer>();
		
		for(int i = 1; i <= 30; i++) {
			checkL.add(i);
		}
		
		for(int i = 0; i < 28; i++) {
			int n = sc.nextInt();
			checkL.removeElement(n);
		}
		
		for(int i = 0; i < checkL.size(); i++) {
			System.out.println(checkL.get(i));
		}
		
		sc.close();
	}

}