結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2021-11-29 19:17:16
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,197 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 78,608 KB
実行使用メモリ 300,936 KB
最終ジャッジ日時 2024-07-02 13:11:58
合計ジャッジ時間 26,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 50 ms
37,096 KB
testcase_02 AC 50 ms
37,024 KB
testcase_03 AC 48 ms
36,604 KB
testcase_04 AC 49 ms
37,120 KB
testcase_05 AC 53 ms
37,480 KB
testcase_06 AC 59 ms
37,496 KB
testcase_07 AC 52 ms
36,724 KB
testcase_08 AC 130 ms
48,872 KB
testcase_09 AC 51 ms
36,844 KB
testcase_10 TLE -
testcase_11 AC 1,881 ms
275,748 KB
testcase_12 AC 101 ms
39,656 KB
testcase_13 AC 155 ms
48,392 KB
testcase_14 AC 1,718 ms
246,192 KB
testcase_15 AC 49 ms
37,008 KB
testcase_16 AC 49 ms
36,976 KB
testcase_17 AC 50 ms
37,076 KB
testcase_18 TLE -
testcase_19 AC 176 ms
50,776 KB
testcase_20 AC 1,777 ms
216,632 KB
testcase_21 TLE -
testcase_22 AC 102 ms
39,676 KB
testcase_23 AC 50 ms
37,120 KB
testcase_24 AC 139 ms
47,280 KB
testcase_25 AC 114 ms
43,012 KB
testcase_26 AC 510 ms
89,336 KB
testcase_27 AC 757 ms
102,580 KB
testcase_28 AC 1,091 ms
153,096 KB
testcase_29 AC 514 ms
95,648 KB
testcase_30 TLE -
testcase_31 AC 103 ms
52,652 KB
testcase_32 AC 51 ms
50,416 KB
testcase_33 AC 108 ms
52,588 KB
testcase_34 AC 317 ms
79,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<HashMap<Long, Integer>> dp = new ArrayList<>();
    static int[] values;
    static int k;
    static final int MOD = 1000000007;
    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, long 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 / (int)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 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