728x90
백준1009번. 분산처리
https://www.acmicpc.net/problem/1009
📌 풀이
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int t=0; t<T; t++) {
int a = sc.nextInt();
int b = sc.nextInt();
int tmp = a;
for(int i=0; i<b-1; i++) {
a = tmp * a % 10;
}
a%=10;
if(a==0)
a=10;
System.out.println(a);
}
}
}
728x90
'[알고리즘] > 알고리즘' 카테고리의 다른 글
[알고리즘] 백준 17478. 재귀함수가 뭔가요? (0) | 2022.02.13 |
---|---|
[알고리즘] 백준 10974. 모든 순열 (0) | 2022.02.13 |
[알고리즘] 백준6603. 로또 (0) | 2022.02.13 |
[알고리즘] 백준2563. 색종이 (0) | 2022.02.11 |
[알고리즘] (SW)1210. Ladder1 (0) | 2022.02.10 |