백준 11727번(Java)

박은지·2025년 4월 8일
0

백준

목록 보기
55/89
post-thumbnail

import java.io.*;

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[] dp = new int[1001];
        dp[1] = 1;
        dp[2] = 3;
        for (int i = 3; i <= n; i++)
            dp[i] = (dp[i - 1] + 2 * dp[i - 2]) % 10007;

        System.out.println(dp[n]);
	}
}
profile
백엔드 개발자가 되고싶은 eunzi😊

0개의 댓글