일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- useEffect
- design pattern
- 장고
- react
- react hook
- 리액트
- 프로그래머스 자바
- JavaScript
- 프로그래밍 언어론
- Java
- 자바
- 프로그래머스 완전탐색
- 데이터모델링과마이닝
- react firebase
- 백준
- 코딩테스트 고득점 Kit
- codesandbox
- 코딩테스트 고득점 Kit 완전탐색
- 자바 공부
- React JS
- vanillaJS
- 자바스크립트
- useState
- 리액트 훅
- 컴퓨터 네트워크
- 코틀린
- websocket
- 디자인 패턴
- 프로그래머스
- NextJS
Archives
- Today
- Total
목록백준 11726 2×n 타일링 (1)
기록하는 개발자
[백준][JAVA] 11726: 2×n 타일링
https://www.acmicpc.net/problem/11726 11726번: 2×n 타일링 2×n 크기의 직사각형을 1×2, 2×1 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오. 아래 그림은 2×5 크기의 직사각형을 채운 한 가지 방법의 예이다. www.acmicpc.net import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int dp[] = new int [n+1]; dp[1]=1; dp[0]=1; if(n>=2){ for(int j=2;j
Algorithm
2021. 7. 11. 16:15