結果

問題 No.314 ケンケンパ
ユーザー tentententen
提出日時 2022-10-13 09:40:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 565 ms / 1,000 ms
コード長 1,968 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 139,108 KB
最終ジャッジ日時 2023-09-08 18:57:41
合計ジャッジ時間 5,895 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
138,840 KB
testcase_01 AC 42 ms
49,652 KB
testcase_02 AC 42 ms
49,428 KB
testcase_03 AC 43 ms
49,544 KB
testcase_04 AC 42 ms
49,296 KB
testcase_05 AC 43 ms
49,412 KB
testcase_06 AC 42 ms
49,416 KB
testcase_07 AC 42 ms
49,176 KB
testcase_08 AC 42 ms
49,780 KB
testcase_09 AC 42 ms
49,688 KB
testcase_10 AC 43 ms
49,744 KB
testcase_11 AC 42 ms
49,472 KB
testcase_12 AC 43 ms
49,424 KB
testcase_13 AC 43 ms
49,768 KB
testcase_14 AC 45 ms
49,312 KB
testcase_15 AC 50 ms
49,860 KB
testcase_16 AC 70 ms
53,864 KB
testcase_17 AC 98 ms
60,684 KB
testcase_18 AC 282 ms
87,808 KB
testcase_19 AC 565 ms
139,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][][] dp = new int[n + 1][2][2];
        dp[0][0][1] = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 2; k++) {
                    if (k == 1) {
                        dp[i][k][0] += dp[i - 1][j][k];
                        dp[i][k][0] %= MOD;
                    } else if (j == 0 && k == 0) {
                        dp[i][k][1] += dp[i - 1][j][k];
                        dp[i][k][1] %= MOD;
                    } else {
                        dp[i][k][0] += dp[i - 1][j][k];
                        dp[i][k][0] %= MOD;
                        dp[i][k][1] += dp[i - 1][j][k];
                        dp[i][k][1] %= MOD;
                    }
                }
            }
        }
        int ans = 0;
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                ans += dp[n][i][j];
                ans %= MOD;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0