반응형
출처: https://www.acmicpc.net/problem/11648
Input
5
Output
0
Input으로 주어진 숫자가 규칙에 따라 1의 자리가 되는 단계를 출력하는 문제.
1의 자리를 파악하기 위해 정수를 문자열로 변환하여 처리.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.next();
sc.close();
int len = str.length();
int answer = 0;
// 길이가 1이 될 때까지 (키파가 슬퍼질때까지)
while(len > 1) {
int temp = 1;
// 나머지 연산을 이용해서도 한자리씩 곱할 수 있다.
for(int i=0; i<len; i++) {
temp = temp * Integer.parseInt(str.substring(i, i+1));
}
str = String.valueOf(temp);
len = str.length();
answer++;
}
// 정답 출력
System.out.println(answer);
}
}
반응형
'PS 문제 풀이 > Baekjoon' 카테고리의 다른 글
[BOJ] 백준 9436 Round Robin (0) | 2021.02.16 |
---|---|
[BOJ] 백준 2744 대소문자 바꾸기 (0) | 2021.02.16 |
[BOJ] 백준 9669 애너그램 (Java) (0) | 2021.02.13 |
[BOJ] 백준 15685 드래곤 커브 (0) | 2021.02.13 |
[BOJ] 백준 14503 로봇 청소기 (0) | 2021.02.13 |
댓글