[백준 알고리즘] 1110번 더하기 사이클(Python3, Java)언어, 알고리즘 공부/백준2020. 2. 11. 22:43
Table of Contents
<Python3>
n = nn = int(input())
cycle = 0
while True:
res = (n // 10) + (n % 10)
cycle += 1
n = int(str(n % 10) + str(res % 10))
if nn == n:
break
print(cycle)
<Java>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
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 cnt = 0;
int temp = n;
while (true) {
int a = temp / 10;
int b = temp % 10;
cnt++;
temp = b * 10 + ((a + b) % 10);
if (temp == n)
break;
}
System.out.println(cnt);
}
}
▼링크
https://www.acmicpc.net/problem/1110
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 2562번 최댓값(Python 3, Java) (0) | 2020.02.11 |
---|---|
[백준 알고리즘] 10818번 최소, 최대(Python3, Java) (2) | 2020.02.11 |
[백준 알고리즘] 10951번 A+B - 4(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 10952번 A+B - 5(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 11022번 A+B - 8(Python3, Java) (0) | 2020.02.11 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!