結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2023-07-19 09:47:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,212 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 90,396 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2023-10-19 12:22:18
合計ジャッジ時間 14,960 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 732 ms
64,636 KB
testcase_01 AC 51 ms
36,892 KB
testcase_02 AC 51 ms
36,868 KB
testcase_03 AC 55 ms
36,916 KB
testcase_04 AC 58 ms
36,920 KB
testcase_05 AC 55 ms
36,936 KB
testcase_06 AC 56 ms
36,968 KB
testcase_07 AC 57 ms
36,896 KB
testcase_08 AC 647 ms
53,504 KB
testcase_09 WA -
testcase_10 AC 769 ms
65,468 KB
testcase_11 AC 626 ms
71,904 KB
testcase_12 AC 97 ms
55,284 KB
testcase_13 AC 116 ms
55,648 KB
testcase_14 AC 508 ms
68,744 KB
testcase_15 AC 50 ms
53,600 KB
testcase_16 WA -
testcase_17 AC 53 ms
53,588 KB
testcase_18 AC 757 ms
78,564 KB
testcase_19 AC 133 ms
56,112 KB
testcase_20 AC 568 ms
71,416 KB
testcase_21 AC 750 ms
78,560 KB
testcase_22 AC 678 ms
78,520 KB
testcase_23 WA -
testcase_24 AC 103 ms
55,524 KB
testcase_25 AC 101 ms
55,428 KB
testcase_26 AC 177 ms
58,856 KB
testcase_27 AC 232 ms
62,788 KB
testcase_28 AC 317 ms
64,940 KB
testcase_29 AC 181 ms
58,828 KB
testcase_30 AC 812 ms
78,628 KB
testcase_31 AC 672 ms
78,568 KB
testcase_32 WA -
testcase_33 AC 116 ms
55,304 KB
testcase_34 AC 130 ms
55,836 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