public class 체육복 {
public static void main(String[] args) {
int n = 5;// 전체 학생수
int[] lost = new int[]{2,4};//도난 당한 학생들의 번호
int[] reserve = new int[]{1,3,5};//여별 옷이 있는 있는 학생들의 번호
int answer = 0;
int[] total = new int[n+2];//전체 0으로 초기화
//여벌옷이있으면 1, 친구의 도움이 필요없다면 0, 체육복이없다면 -1
for(int i : reserve){//여벌 옷이 있는 학생들은 +1
total[i]++;
}
for(int i : lost){//도난 당한 사람들은 -1
total[i]--;
}
for(int i=1; i<= n; i++){
if(total[i] == -1){//루프를 돌때 i가 -1이라면 앞뒤의 1이있나 탐색
if(total[i-1] == 1){
total[i]++;
total[i-1]--;
}else if(total[i+1] == 1){
total[i]++;
total[i+1]--;
}
}
}
for(int i=1; i<=n; i++){//1번학생부터 전체학생수n까지 루프
if(total[i]>=0){
answer++;
}
}
System.out.println(answer);
}
}