[알고리즘] 백준 - 11507 ( 오르막 수 ) / 자바

배고픈메꾸리·2021년 4월 11일
0

알고리즘

목록 보기
76/128
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

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[][] arr = new int[1001][10];

		Arrays.fill(arr[0] , 1);

		for (int i = 1; i <= 1000; i++) {
			for (int j = 9; j >= 0; j--) {
				if (j == 9) {
					arr[i][j] = 1;
				} else {
					arr[i][j] = (arr[i-1][j] + arr[i][j+1]) %10007;
				}
			}
		}
		
		System.out.print(arr[N][0]);

	}

}

profile
FE 개발자가 되자

0개의 댓글