Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스43165
- BFS
- 타겟넘버
- BFS/DFS
- sql
- 알고리즘
- dfs
- 신입 사원
- 그리디
- 백준1388
- jsp
- 백준1969
- 바닥장식
- 강의실배정
- 자바
- 백준2606
- 백준11000
- 백준12845
- 백준4796
- javascript
- 펠린드롬
- 백준 1946
- 백준
- 동전0
- 백준11047
- Spring Framework MVC
- 구현
- Java
- 백준10988
- 프로그래머스
Archives
- Today
- Total
The Kkang's man
[ 자바 /Java ] 백준 11726 : 2*N 타일링 본문
문제
풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Tile_11726{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] d = new int[n+2];
d[1] = 1;
d[2] = 2;
for(int i=3; i<=n; i++) {
d[i] = ( d[i-1] + d[i-2] ) % 10007;
}
System.out.println(d[n]);
}
}
'알고리즘 > DP' 카테고리의 다른 글
[ 자바 /Java ] 백준 9095 : 1, 2, 3 더하기 (0) | 2021.07.18 |
---|---|
[ 자바 /Java ] 백준 2579 : 계단오르기 (0) | 2021.07.18 |
[ 자바 /Java ] 백준 11722 : 가장 긴 감소하는 부분 수열 (0) | 2021.07.18 |
Comments