結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2021-11-29 19:35:28
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,455 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 86,080 KB
実行使用メモリ 277,976 KB
最終ジャッジ日時 2024-11-08 05:17:11
合計ジャッジ時間 13,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 53 ms
36,876 KB
testcase_02 AC 57 ms
37,128 KB
testcase_03 AC 54 ms
36,648 KB
testcase_04 AC 54 ms
36,988 KB
testcase_05 AC 60 ms
37,084 KB
testcase_06 AC 64 ms
37,404 KB
testcase_07 AC 56 ms
37,028 KB
testcase_08 AC 149 ms
49,076 KB
testcase_09 AC 54 ms
37,108 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 121 ms
39,848 KB
testcase_13 AC 198 ms
48,832 KB
testcase_14 AC 1,862 ms
221,244 KB
testcase_15 AC 54 ms
37,044 KB
testcase_16 AC 55 ms
36,808 KB
testcase_17 AC 53 ms
37,204 KB
testcase_18 TLE -
testcase_19 AC 190 ms
49,024 KB
testcase_20 AC 1,949 ms
195,340 KB
testcase_21 TLE -
testcase_22 AC 112 ms
39,912 KB
testcase_23 AC 55 ms
37,100 KB
testcase_24 AC 157 ms
48,120 KB
testcase_25 AC 125 ms
41,408 KB
testcase_26 AC 577 ms
90,464 KB
testcase_27 AC 800 ms
99,708 KB
testcase_28 AC 1,202 ms
151,592 KB
testcase_29 AC 587 ms
89,568 KB
testcase_30 TLE -
testcase_31 AC 114 ms
39,612 KB
testcase_32 AC 67 ms
37,144 KB
testcase_33 AC 116 ms
39,856 KB
testcase_34 AC 368 ms
65,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>();
    static int[] values;
    static int k;
    static final int MOD = 1000000007;
    static HashMap<Integer, HashMap<Integer, Integer>> gcdDP = new HashMap<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        if (k == 1) {
            System.out.println(pow(2, n) - 1);
            return;
        }
        values = new int[n];
        for (int i = 0; i < n; i++) {
            dp.add(new HashMap<>());
            values[i] = (int)getGCD(sc.nextLong(), k);
        }
        System.out.println((pow(2, n) - dfw(n - 1, k) + MOD) % MOD);
    }
    
    static int dfw(int idx, int key) {
        if (key == 1) {
            return 0;
        }
        if (idx < 0) {
            return 1;
        }
        if (!dp.get(idx).containsKey(key)) {
            int ans = (dfw(idx - 1, key) + dfw(idx - 1, key / getGCD(key, values[idx]))) % MOD;
            dp.get(idx).put(key, ans);
        }
        return dp.get(idx).get(key);
    }
    
    static long getGCD(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
    
    static int getGCD(int x, int y) {
            if (x % y == 0) {
                return y;
            } else {
                return getGCD(y, x % y);
            }
    }
    
    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