結果

問題 No.1811 EQUIV Ten
ユーザー tentententen
提出日時 2023-06-29 11:45:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 2,947 bytes
コンパイル時間 3,643 ms
コンパイル使用メモリ 94,992 KB
実行使用メモリ 78,896 KB
最終ジャッジ日時 2024-07-06 03:07:50
合計ジャッジ時間 8,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
37,228 KB
testcase_01 AC 43 ms
37,008 KB
testcase_02 AC 44 ms
36,988 KB
testcase_03 AC 43 ms
36,884 KB
testcase_04 AC 42 ms
36,928 KB
testcase_05 AC 43 ms
37,044 KB
testcase_06 AC 42 ms
37,272 KB
testcase_07 AC 42 ms
37,008 KB
testcase_08 AC 42 ms
37,472 KB
testcase_09 AC 42 ms
37,372 KB
testcase_10 AC 41 ms
36,928 KB
testcase_11 AC 261 ms
77,988 KB
testcase_12 AC 271 ms
78,416 KB
testcase_13 AC 280 ms
78,700 KB
testcase_14 AC 279 ms
78,484 KB
testcase_15 AC 283 ms
78,896 KB
testcase_16 AC 44 ms
37,304 KB
testcase_17 AC 42 ms
37,208 KB
testcase_18 AC 43 ms
37,144 KB
testcase_19 AC 44 ms
37,372 KB
testcase_20 AC 57 ms
39,084 KB
testcase_21 AC 55 ms
38,864 KB
testcase_22 AC 43 ms
36,936 KB
testcase_23 AC 127 ms
54,776 KB
testcase_24 AC 71 ms
40,248 KB
testcase_25 AC 44 ms
37,204 KB
testcase_26 AC 95 ms
50,716 KB
testcase_27 AC 47 ms
37,312 KB
testcase_28 AC 43 ms
37,140 KB
testcase_29 AC 42 ms
37,140 KB
testcase_30 AC 265 ms
77,948 KB
testcase_31 AC 52 ms
37,808 KB
testcase_32 AC 72 ms
40,828 KB
testcase_33 AC 72 ms
40,724 KB
testcase_34 AC 193 ms
68,520 KB
testcase_35 AC 96 ms
50,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 < 4) {
            System.out.println(0);
            return;
        }
        int[][][][] dp = new int[n][2][2][2];
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 2; k++) {
                    dp[2][i][j][k] = 1;
                }
            }
        }
        for (int i = 3; i < n; i++) {
            for (int a = 0; a < 2; a++) {
                for (int b = 0; b < 2; b++) {
                    for (int c = 0; c < 2; c++) {
                        for (int d = 0; d < 2; d++) {
                            if (a == 1 && b == 0 && c == 1 && d == 0) {
                                continue;
                            }
                            dp[i][b][c][d] += dp[i - 1][a][b][c];
                            dp[i][b][c][d] %= MOD;
                        }
                    }
                }
            }
        }
        int ans = 0;
        for (int [][] arr1 : dp[n - 1]) {
            for (int [] arr2 : arr1) {
                for (int x : arr2) {
                    ans += x;
                    ans %= MOD;
                }
            }
        }
        System.out.println((pow(2, n) - ans + MOD) % MOD);
    }
    
    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 Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0