結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2023-07-19 09:47:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,212 bytes
コンパイル時間 3,564 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 64,952 KB
最終ジャッジ日時 2024-09-19 08:25:39
合計ジャッジ時間 13,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 679 ms
64,908 KB
testcase_01 AC 48 ms
37,180 KB
testcase_02 AC 48 ms
37,096 KB
testcase_03 AC 47 ms
37,028 KB
testcase_04 AC 49 ms
37,140 KB
testcase_05 AC 48 ms
37,184 KB
testcase_06 AC 49 ms
36,972 KB
testcase_07 AC 50 ms
36,828 KB
testcase_08 AC 593 ms
53,728 KB
testcase_09 WA -
testcase_10 AC 711 ms
64,904 KB
testcase_11 AC 578 ms
58,824 KB
testcase_12 AC 91 ms
39,008 KB
testcase_13 AC 106 ms
39,668 KB
testcase_14 AC 476 ms
55,436 KB
testcase_15 AC 46 ms
37,060 KB
testcase_16 WA -
testcase_17 AC 46 ms
36,704 KB
testcase_18 AC 690 ms
64,576 KB
testcase_19 AC 120 ms
39,552 KB
testcase_20 AC 533 ms
58,492 KB
testcase_21 AC 693 ms
64,952 KB
testcase_22 AC 652 ms
64,900 KB
testcase_23 WA -
testcase_24 AC 86 ms
39,180 KB
testcase_25 AC 92 ms
38,960 KB
testcase_26 AC 170 ms
44,356 KB
testcase_27 AC 207 ms
48,280 KB
testcase_28 AC 298 ms
50,020 KB
testcase_29 AC 170 ms
43,932 KB
testcase_30 AC 780 ms
64,928 KB
testcase_31 AC 633 ms
64,876 KB
testcase_32 WA -
testcase_33 AC 97 ms
40,364 KB
testcase_34 AC 121 ms
40,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static int[][] dp;
    static final int MOD = 1000000007;
    static int[][] matrix;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        TreeMap<Integer, Integer> idxes = new TreeMap<>();
        for (int i = 1; i <= Math.sqrt(k); i++) {
            if (k % i == 0) {
                idxes.put(i, null);
                idxes.put(k / i, null);
            }
        }
        int size = 0;
        for (int x : idxes.keySet()) {
            idxes.put(x, size++);
        }
        matrix = new int[size][size];
        for (int x : idxes.keySet()) {
            for (int y : idxes.keySet()) {
                matrix[idxes.get(x)][idxes.get(y)] = idxes.get((int)(getGCD((long)x * y, k)));
            }
        }
        values = new int[n];
        for (int i =  0; i < n; i++) {
            values[i] = idxes.get((int)getGCD(k, sc.nextLong()));
        }
        dp = new int[n][size];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, 0));
    }
    
    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;
        }
    }
    
    static long getGCD(long x, long y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
    
    static int dfw(int idx, int v) {
        if (v == matrix.length - 1) {
            return (int)pow(2, idx + 1);
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = (dfw(idx - 1, v) + dfw(idx - 1, matrix[v][values[idx]])) % MOD;
        }
        return dp[idx][v];
    }
}
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