Notice
Recent Posts
Recent Comments
Link
목록11726 (1)
just inside
[백준] Silver 3. 11726 - 2xn 타일링 python
문제 링크https://www.acmicpc.net/problem/11726문제 설명2×n 크기의 직사각형을 1×2, 2×1 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오.아래 그림은 2×5 크기의 직사각형을 채운 한 가지 방법의 예이다.입력 첫째 줄에 n이 주어진다. (1 ≤ n ≤ 1,000) 출력 첫째 줄에 2×n 크기의 직사각형을 채우는 방법의 수를 10,007로 나눈 나머지를 출력한다. 제출 코드import sysinput = sys.stdin.readlinen = int(input().rstrip())dp = [0,1,2,3]if n > 3: for i in range(4, n+1): dp.append(dp[i-1]+dp[i-2])print(dp[n]%10007) ..
coding test/dp
2024. 8. 19. 12:02