[백준] 11726. 2xn 타일링(실버3)(실버3)
백준(실버3) - 11726. 2xn 타일링(실버3)
풀이
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] arr = new int[1001];
arr[1] = 1;
arr[2] = 2;
if(n>=3) {
for(int i=3; i<=n; i++)
arr[i] = (arr[i-1]+ arr[i-2])%10007;
}
System.out.println(arr[n]);
sc.close();
}
}
Author And Source
이 문제에 관하여([백준] 11726. 2xn 타일링(실버3)(실버3)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@humblechoi/백준-11726.-2xn-타일링실버3실버3저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)