justgo_developer

[JAVA] 백준 1547 공 본문

IT/코딩 문제 풀이

[JAVA] 백준 1547 공

다날92 2018. 1. 3. 21:20
728x90
반응형



import java.util.*;


public class Main {

private static Scanner sc = new Scanner(System.in);

public static void main(String[] args) {

int M = sc.nextInt();

int[] cup = new int[4];

cup[1]=1;

for(int i=0;i<M;i++){

int x = sc.nextInt();

int y = sc.nextInt();

int temp = cup[x];

cup[x] = cup[y];

cup[y] = temp;

}

for(int i=1;i<=3;i++){

if(cup[i]==1)

System.out.print(i);

}

}

}



728x90
반응형

'IT > 코딩 문제 풀이' 카테고리의 다른 글

[JAVA] 백준 1012 유기농배추  (0) 2018.01.10
[JAVA]백준 2178 미로탐색  (0) 2018.01.09
[JAVA] 백준 2161 카드1  (0) 2018.01.03
[JAVA] 백준 1057 토너먼트  (0) 2018.01.01
[JAVA] 백준 2455번 지능형기차  (0) 2018.01.01