結果

問題 No.1811 EQUIV Ten
ユーザー tentententen
提出日時 2024-08-08 13:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 2,495 bytes
コンパイル時間 2,571 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 88,744 KB
最終ジャッジ日時 2024-08-08 13:08:30
合計ジャッジ時間 8,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,276 KB
testcase_01 AC 52 ms
50,396 KB
testcase_02 AC 52 ms
50,324 KB
testcase_03 AC 52 ms
50,144 KB
testcase_04 AC 51 ms
50,464 KB
testcase_05 AC 53 ms
50,184 KB
testcase_06 AC 53 ms
50,576 KB
testcase_07 AC 53 ms
50,388 KB
testcase_08 AC 51 ms
50,140 KB
testcase_09 AC 53 ms
50,148 KB
testcase_10 AC 53 ms
50,384 KB
testcase_11 AC 351 ms
87,992 KB
testcase_12 AC 336 ms
88,272 KB
testcase_13 AC 349 ms
88,484 KB
testcase_14 AC 349 ms
88,744 KB
testcase_15 AC 359 ms
88,636 KB
testcase_16 AC 52 ms
50,228 KB
testcase_17 AC 53 ms
50,188 KB
testcase_18 AC 55 ms
50,168 KB
testcase_19 AC 54 ms
50,040 KB
testcase_20 AC 85 ms
51,552 KB
testcase_21 AC 85 ms
51,436 KB
testcase_22 AC 54 ms
50,408 KB
testcase_23 AC 161 ms
65,100 KB
testcase_24 AC 93 ms
53,904 KB
testcase_25 AC 57 ms
50,156 KB
testcase_26 AC 122 ms
61,700 KB
testcase_27 AC 64 ms
50,544 KB
testcase_28 AC 53 ms
50,448 KB
testcase_29 AC 54 ms
50,368 KB
testcase_30 AC 326 ms
87,936 KB
testcase_31 AC 81 ms
51,404 KB
testcase_32 AC 90 ms
54,084 KB
testcase_33 AC 91 ms
54,180 KB
testcase_34 AC 277 ms
78,656 KB
testcase_35 AC 121 ms
61,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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;
                }
            }
        }
        long ans = 0;
        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) {
                                ans += dp[i - 1][a][b][c] * pow(2, n - i - 1) % MOD;
                                ans %= MOD;
                            } else {
                                dp[i][b][c][d] += dp[i - 1][a][b][c];
                                dp[i][b][c][d] %= 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;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0