본문 바로가기

코딩 문제/백준

백준 - 1009번

728x90

 

풀이

 

import java.util.Scanner;

import java.io.IOException;

 

public class Main {

      public static void main(String[] args) throws IOException {

            Scanner scanner = new Scanner(System.in);

            int num = scanner.nextInt(); // 테스트 케이스 개수

            int a = 0;

            int b = 0;

            int cnt = 0;

            int count = 0;

            int[] arr = new int[num];

            while(cnt != num){

                  a = scanner.nextInt();

                  count = 1;

                  b = scanner.nextInt();

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

                        count *= a;

                        count %= 10;

                  }

                  if(count == 0) {

                        count = 10;

                  }

                  arr[cnt] = count;

                  cnt++;

            }

            scanner.close();

            for(int i=0; i<arr.length; i++){

                  System.out.println(arr[i]);

            }

      }

}

'코딩 문제 > 백준' 카테고리의 다른 글

백준 - 1059번  (0) 2021.03.15
백준 - 1037번  (0) 2021.03.15
백준 - 1018번  (0) 2021.03.15
백준 - 1010번  (0) 2021.02.26
백준 - 18405번  (0) 2021.02.16