結果

問題 No.314 ケンケンパ
ユーザー kitakitalilykitakitalily
提出日時 2019-05-19 00:52:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 765 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 53,672 KB
最終ジャッジ日時 2024-09-17 06:25:20
合計ジャッジ時間 6,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
53,672 KB
testcase_01 AC 121 ms
40,688 KB
testcase_02 AC 122 ms
41,156 KB
testcase_03 AC 120 ms
41,104 KB
testcase_04 AC 107 ms
41,156 KB
testcase_05 AC 116 ms
41,184 KB
testcase_06 AC 118 ms
40,936 KB
testcase_07 AC 115 ms
41,056 KB
testcase_08 AC 106 ms
39,920 KB
testcase_09 AC 110 ms
40,980 KB
testcase_10 AC 118 ms
41,192 KB
testcase_11 AC 120 ms
41,180 KB
testcase_12 AC 108 ms
41,044 KB
testcase_13 AC 120 ms
40,864 KB
testcase_14 AC 105 ms
41,184 KB
testcase_15 AC 120 ms
40,876 KB
testcase_16 AC 121 ms
41,712 KB
testcase_17 AC 134 ms
42,164 KB
testcase_18 AC 146 ms
47,064 KB
testcase_19 AC 154 ms
53,428 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