문제링크
https://www.acmicpc.net/problem/5597
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main_5597 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int arr[] = new int[30];
for(int i=0;i<28;i++) {
arr[Integer.parseInt(br.readLine())-1] = 1;
}
for(int i=0;i<30;i++) {
if(arr[i]==0)
System.out.println(i+1);
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[JAVA]백준_1302_베스트셀러 (0) | 2021.02.07 |
---|---|
[JAVA]백준_10974_모든 순열 (0) | 2021.02.07 |
[JAVA]백준_2167_별찍기 -6 (0) | 2021.02.07 |
[JAVA]백준_2167_2차원 배열의 합 (0) | 2021.02.07 |
[JAVA] 백준_2493_탑 (0) | 2021.02.07 |