Dev.baelanche

[백준 1009] 분산처리 본문

Data Structure & Algorithm/PS - JAVA

[백준 1009] 분산처리

baelanche 2019. 6. 29. 17:40
반응형

 

컴퓨터를 10개씩 짜른다.

0번째 컴퓨터의 경우 10으로 출력하면 된다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int t = sc.nextInt();
        
        while(t-->0) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            
            int c = a % 10;
            for(int i=0; i<b-1; i++) {
                c *= a;
                c %= 10;
            }
            System.out.println(c == 0 ? 10 : c);
        }
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 1057] 토너먼트  (0) 2019.06.29
[백준 10815] 숫자 카드  (0) 2019.06.29
[백준 2979] 트럭 주차  (0) 2019.06.29
[백준 1547] 공  (0) 2019.06.29
[백준 14500] 테트로미노  (0) 2019.06.29
Comments