結果

問題 No.2313 Product of Subsequence (hard)
ユーザー tentententen
提出日時 2023-06-05 14:02:34
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 3,391 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 85,284 KB
実行使用メモリ 767,996 KB
最終ジャッジ日時 2024-06-09 05:10:08
合計ジャッジ時間 20,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,372 KB
testcase_01 AC 45 ms
50,612 KB
testcase_02 AC 46 ms
50,596 KB
testcase_03 AC 84 ms
52,188 KB
testcase_04 AC 97 ms
52,284 KB
testcase_05 AC 103 ms
52,396 KB
testcase_06 AC 69 ms
52,068 KB
testcase_07 AC 93 ms
52,304 KB
testcase_08 AC 600 ms
95,464 KB
testcase_09 AC 336 ms
78,968 KB
testcase_10 AC 539 ms
88,532 KB
testcase_11 AC 373 ms
77,772 KB
testcase_12 AC 517 ms
90,812 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 AC 49 ms
50,492 KB
testcase_22 AC 47 ms
50,496 KB
testcase_23 AC 57 ms
50,692 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 MLE -
testcase_28 AC 1,119 ms
100,824 KB
testcase_29 AC 452 ms
87,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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