336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
백준알고리즘
https://www.acmicpc.net/problem/4673
그냥 계산하면되 ..
public class Main { public static void main(String[] args) { int array[] = new int[10001]; for(int i=1; i<= array.length; i++) { int result = calculate(i); if(result <= 10000) { array[result] = 1; } } for(int i=1; i< array.length; i++) { if(array[i] != 1) { System.out.println(i); } } } public static int calculate(int value) { int result = value; while(value > 0) { result += value % 10; value /= 10; } return result; } }
'알고리즘 및 자료구조 > 문제' 카테고리의 다른 글
백준알고리즘 11719번 그대로 출력하기2 (0) | 2018.05.01 |
---|---|
백준알고리즘 10828번 스택 (0) | 2018.05.01 |
백준알고리즘 11052번 붕어빵 판매 (0) | 2018.05.01 |
백준알고리즘 11726번 2 * N 타일링 (0) | 2018.04.24 |
백준알고리즘 1159번 농구 경기 (0) | 2018.04.24 |