結果

問題 No.1811 EQUIV Ten
ユーザー tentententen
提出日時 2022-01-21 16:23:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 2,022 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 61,004 KB
最終ジャッジ日時 2024-05-04 05:29:09
合計ジャッジ時間 6,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,140 KB
testcase_01 AC 56 ms
50,296 KB
testcase_02 AC 56 ms
50,368 KB
testcase_03 AC 57 ms
50,276 KB
testcase_04 AC 56 ms
50,416 KB
testcase_05 AC 56 ms
50,224 KB
testcase_06 AC 56 ms
50,060 KB
testcase_07 AC 55 ms
50,072 KB
testcase_08 AC 56 ms
50,316 KB
testcase_09 AC 56 ms
50,216 KB
testcase_10 AC 57 ms
50,248 KB
testcase_11 AC 104 ms
60,820 KB
testcase_12 AC 103 ms
60,820 KB
testcase_13 AC 105 ms
60,900 KB
testcase_14 AC 104 ms
60,876 KB
testcase_15 AC 104 ms
60,760 KB
testcase_16 AC 55 ms
50,312 KB
testcase_17 AC 55 ms
50,048 KB
testcase_18 AC 57 ms
49,940 KB
testcase_19 AC 56 ms
50,152 KB
testcase_20 AC 60 ms
50,356 KB
testcase_21 AC 59 ms
50,028 KB
testcase_22 AC 55 ms
50,272 KB
testcase_23 AC 79 ms
52,536 KB
testcase_24 AC 63 ms
50,336 KB
testcase_25 AC 57 ms
50,224 KB
testcase_26 AC 77 ms
52,528 KB
testcase_27 AC 60 ms
50,328 KB
testcase_28 AC 57 ms
50,288 KB
testcase_29 AC 55 ms
50,096 KB
testcase_30 AC 102 ms
61,004 KB
testcase_31 AC 58 ms
50,392 KB
testcase_32 AC 60 ms
50,204 KB
testcase_33 AC 61 ms
50,176 KB
testcase_34 AC 101 ms
60,752 KB
testcase_35 AC 76 ms
52,612 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();
        if (n <= 3) {
            System.out.println(0);
            return;
        }
        int[][] dp = new int[n + 1][8];
        Arrays.fill(dp[3], 1);
        for (int i = 4; i <= n; i++) {
            dp[i][0] = (dp[i - 1][0] + dp[i - 1][4]) % MOD;
            dp[i][1] = (dp[i - 1][0] + dp[i - 1][4]) % MOD;
            dp[i][2] = dp[i - 1][1];
            dp[i][3] = (dp[i - 1][1] + dp[i - 1][5]) % MOD;
            dp[i][4] = (dp[i - 1][2] + dp[i - 1][6]) % MOD;
            dp[i][5] = (dp[i - 1][2] + dp[i - 1][6]) % MOD;
            dp[i][6] = (dp[i - 1][3] + dp[i - 1][7]) % MOD;
            dp[i][7] = (dp[i - 1][3] + dp[i - 1][7]) % MOD;
        }
        int total = 0;
        for (int x : dp[n]) {
            total += x;
            total %= MOD;
        }
        long ans = (pow(2, n) - total + MOD) % MOD;
        System.out.println(ans);
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0