結果

問題 No.314 ケンケンパ
ユーザー ぴろずぴろず
提出日時 2015-12-07 00:10:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 345 ms / 1,000 ms
コード長 581 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 101,780 KB
最終ジャッジ日時 2024-09-14 16:41:29
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
83,268 KB
testcase_01 AC 131 ms
41,212 KB
testcase_02 AC 133 ms
40,700 KB
testcase_03 AC 132 ms
40,884 KB
testcase_04 AC 131 ms
41,124 KB
testcase_05 AC 131 ms
40,860 KB
testcase_06 AC 133 ms
41,236 KB
testcase_07 AC 133 ms
40,784 KB
testcase_08 AC 133 ms
41,152 KB
testcase_09 AC 132 ms
40,756 KB
testcase_10 AC 134 ms
41,300 KB
testcase_11 AC 132 ms
41,008 KB
testcase_12 AC 132 ms
41,320 KB
testcase_13 AC 130 ms
40,972 KB
testcase_14 AC 132 ms
41,460 KB
testcase_15 AC 135 ms
41,408 KB
testcase_16 AC 139 ms
42,020 KB
testcase_17 AC 148 ms
47,248 KB
testcase_18 AC 227 ms
67,076 KB
testcase_19 AC 345 ms
101,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no314;

import java.util.Scanner;

public class Main {
	public static final long MOD = 1000000007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[][] dp = new long[n+1][3];
		dp[0][0] = 1;
		for(int i=0;i<n;i++) {
			for(int j=0;j<3;j++) {
				if (j > 0) {
					dp[i+1][0] = (dp[i+1][0] + dp[i][j]) % MOD;
				}
				if (j < 2) {
					dp[i+1][j+1] = (dp[i+1][j+1] + dp[i][j]) % MOD;
				}
			}
		}
		long ans = 0;
		for(int i=0;i<3;i++) {
			ans = (ans + dp[n][i]) % MOD;
		}
		System.out.println(ans);
	}

}
0