結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2023-03-27 11:24:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,590 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 92,432 KB
実行使用メモリ 314,956 KB
最終ジャッジ日時 2024-09-19 10:10:46
合計ジャッジ時間 28,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 53 ms
50,268 KB
testcase_02 AC 52 ms
50,328 KB
testcase_03 AC 52 ms
50,044 KB
testcase_04 AC 52 ms
50,168 KB
testcase_05 AC 58 ms
50,432 KB
testcase_06 AC 59 ms
50,420 KB
testcase_07 AC 54 ms
50,476 KB
testcase_08 AC 132 ms
56,856 KB
testcase_09 WA -
testcase_10 TLE -
testcase_11 AC 1,952 ms
277,012 KB
testcase_12 AC 106 ms
52,492 KB
testcase_13 AC 176 ms
58,800 KB
testcase_14 AC 1,846 ms
244,736 KB
testcase_15 AC 52 ms
50,276 KB
testcase_16 WA -
testcase_17 AC 49 ms
50,464 KB
testcase_18 TLE -
testcase_19 AC 190 ms
61,240 KB
testcase_20 AC 1,766 ms
218,804 KB
testcase_21 TLE -
testcase_22 AC 113 ms
52,508 KB
testcase_23 WA -
testcase_24 AC 147 ms
57,648 KB
testcase_25 AC 123 ms
56,196 KB
testcase_26 AC 529 ms
101,132 KB
testcase_27 AC 796 ms
114,752 KB
testcase_28 AC 1,079 ms
166,876 KB
testcase_29 AC 572 ms
107,512 KB
testcase_30 TLE -
testcase_31 AC 108 ms
52,380 KB
testcase_32 WA -
testcase_33 AC 110 ms
54,268 KB
testcase_34 AC 304 ms
78,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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