-
문제
코드
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); int result = N; int count = 0; while ( true ) { N = ( (N%10)*10 ) + ( ((N/10) + (N%10))%10 ); count++; if ( N == result) { break; } } System.out.println(count); } }
'PS > 백준' 카테고리의 다른 글
[백준_2644] 촌수계산 by python ( BFS ) (0) 2021.01.16 [백준_2606] 바이러스 by python ( DFS ) (0) 2021.01.16 [백준_1783] 병든나이트 (구현, 그리디) (0) 2021.01.16 [백준_14470] 전자레인지( 구현[Implementation] ) (0) 2021.01.16 [백준_20361] 일우는 야바위꾼 ( 구현 [Implementation] ) (0) 2021.01.16 댓글