結果

問題 No.314 ケンケンパ
ユーザー kou6839kou6839
提出日時 2015-12-07 00:19:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 1,000 ms
コード長 639 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-09-14 17:00:30
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
76,324 KB
testcase_01 AC 128 ms
41,204 KB
testcase_02 AC 132 ms
41,200 KB
testcase_03 AC 131 ms
41,484 KB
testcase_04 AC 128 ms
41,012 KB
testcase_05 AC 129 ms
41,328 KB
testcase_06 AC 131 ms
41,152 KB
testcase_07 AC 118 ms
39,876 KB
testcase_08 AC 130 ms
41,192 KB
testcase_09 AC 130 ms
41,148 KB
testcase_10 AC 128 ms
41,012 KB
testcase_11 AC 130 ms
41,152 KB
testcase_12 AC 130 ms
41,104 KB
testcase_13 AC 131 ms
41,220 KB
testcase_14 AC 131 ms
41,356 KB
testcase_15 AC 133 ms
41,408 KB
testcase_16 AC 139 ms
41,872 KB
testcase_17 AC 163 ms
47,720 KB
testcase_18 AC 219 ms
58,284 KB
testcase_19 AC 312 ms
76,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		int mod = 1000000007;
		int[][] dp = new int[n+1][3];
		dp[0][0] = 1;
		for(int i=1;i<n+1;i++){
			for(int j=0;j<3;j++){
				if(j==0){
					dp[i][1]=dp[i-1][0];
					dp[i][1]%=mod;
				}
				else if(j==1){
					dp[i][2]+=dp[i-1][1];
					dp[i][2]%=mod;
					dp[i][0]+=dp[i-1][1];
					dp[i][0]%=mod;
				}else{
					dp[i][0]+=dp[i-1][2];
					dp[i][0]%=mod;
				}
			}
		}
		int ans = 0;
		for(int i=0;i<3;i++){
			ans+=dp[n][i];
			ans%=1000000007;
		}
		System.out.println(ans);
	}
}
0