최대 1 분 소요



https://www.acmicpc.net/problem/1110



🔍 문제 풀이

문제 도식화

assets/images/2025/1110.png



💻 코드

전체 코드

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));


        int n = Integer.parseInt(br.readLine());
        int k = n, cnt = 0;

        while(true){
            int a = k / 10;
            int b = k % 10;
            int sum = a + b;

            k = b * 10 + sum % 10;
            cnt ++;
            if(k == n){
                System.out.println(cnt);
                return;
            }
        }

    }
}


카테고리:

업데이트:

댓글남기기