[백준] 14467번 소가 길을 건너간 이유 1 (java, 구현)
728x90
반응형
import java.util.Arrays;
import java.util.Scanner;
public class B_14467_소가길을건너간이유1_Main {
static int n;
static int[] cow;
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int answer=0;
n=sc.nextInt();
cow=new int[11];
Arrays.fill(cow, -1);
for (int i = 0; i < n; i++) {
int num=sc.nextInt();
int pos=sc.nextInt();
if(cow[num]==-1) {
cow[num]=pos;
}else if(cow[num]!=pos) {
cow[num]=pos;
answer+=1;
}
}
System.out.println(answer);
}
}
728x90
반응형
'백준' 카테고리의 다른 글
[백준] 2846번 오르막길 (java, 구현) (0) | 2021.05.02 |
---|---|
[백준] 1789번 수들의 합 (java, 이분탐색) (0) | 2021.05.01 |
[백준] 1013번 달팽이 (구현, java) (0) | 2021.04.29 |
[백준] 11728번 배열 합치기 (java) (0) | 2021.04.28 |
[백준] 15797번 기차가 어둠을 헤치고 은하수를 (구현, java) (0) | 2021.04.28 |
TAGS.