結果

問題 No.314 ケンケンパ
ユーザー GrenacheGrenache
提出日時 2015-12-07 00:16:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 1,000 ms
コード長 766 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-09-14 16:55:46
合計ジャッジ時間 7,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
53,392 KB
testcase_01 AC 134 ms
40,984 KB
testcase_02 AC 131 ms
40,984 KB
testcase_03 AC 133 ms
41,196 KB
testcase_04 AC 128 ms
41,104 KB
testcase_05 AC 129 ms
41,260 KB
testcase_06 AC 135 ms
41,000 KB
testcase_07 AC 136 ms
41,368 KB
testcase_08 AC 132 ms
40,964 KB
testcase_09 AC 134 ms
41,156 KB
testcase_10 AC 136 ms
41,296 KB
testcase_11 AC 133 ms
41,160 KB
testcase_12 AC 136 ms
41,360 KB
testcase_13 AC 136 ms
41,132 KB
testcase_14 AC 138 ms
41,696 KB
testcase_15 AC 138 ms
41,320 KB
testcase_16 AC 138 ms
41,736 KB
testcase_17 AC 151 ms
42,628 KB
testcase_18 AC 161 ms
47,004 KB
testcase_19 AC 175 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder314 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        final int MOD = 1_000_000_007;

        int n = sc.nextInt();

        int[][] dp = new int[3][n];
        dp[1][0] = 1;

        for (int i = 0; i < n - 1; i++) {
        	for (int j = 0; j < 3; j++) {
        		if (j < 2) {
        			dp[j + 1][i + 1] = (dp[j + 1][i + 1] + dp[j][i]) % MOD;
        		}
        		if (j != 0) {
        			dp[0][i + 1] = (dp[0][i + 1] + dp[j][i]) % MOD;
        		}
        	}
        }

        int ret = 0;
        for (int i = 0; i < 3; i++) {
        	ret += dp[i][n - 1];
        	ret %= MOD;
        }

        System.out.println(ret);

        sc.close();
    }
}
0