結果

問題 No.1731 Product of Subsequence
ユーザー tentententen
提出日時 2021-11-08 12:58:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,214 ms / 2,000 ms
コード長 1,877 bytes
コンパイル時間 3,182 ms
コンパイル使用メモリ 78,696 KB
実行使用メモリ 61,000 KB
最終ジャッジ日時 2024-11-08 05:08:55
合計ジャッジ時間 18,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 822 ms
55,600 KB
testcase_01 AC 55 ms
36,692 KB
testcase_02 AC 56 ms
37,128 KB
testcase_03 AC 54 ms
37,036 KB
testcase_04 AC 54 ms
36,924 KB
testcase_05 AC 62 ms
37,340 KB
testcase_06 AC 80 ms
37,560 KB
testcase_07 AC 58 ms
37,220 KB
testcase_08 AC 191 ms
43,972 KB
testcase_09 AC 118 ms
39,632 KB
testcase_10 AC 1,197 ms
56,700 KB
testcase_11 AC 1,106 ms
57,612 KB
testcase_12 AC 119 ms
39,356 KB
testcase_13 AC 206 ms
46,696 KB
testcase_14 AC 791 ms
55,576 KB
testcase_15 AC 55 ms
37,024 KB
testcase_16 AC 54 ms
36,660 KB
testcase_17 AC 54 ms
36,848 KB
testcase_18 AC 1,214 ms
61,000 KB
testcase_19 AC 194 ms
46,664 KB
testcase_20 AC 735 ms
55,388 KB
testcase_21 AC 1,060 ms
56,300 KB
testcase_22 AC 119 ms
39,748 KB
testcase_23 AC 118 ms
39,616 KB
testcase_24 AC 169 ms
44,656 KB
testcase_25 AC 140 ms
42,040 KB
testcase_26 AC 473 ms
53,664 KB
testcase_27 AC 525 ms
55,284 KB
testcase_28 AC 679 ms
55,292 KB
testcase_29 AC 451 ms
53,852 KB
testcase_30 AC 1,003 ms
56,056 KB
testcase_31 AC 119 ms
39,900 KB
testcase_32 AC 103 ms
38,936 KB
testcase_33 AC 120 ms
40,000 KB
testcase_34 AC 316 ms
48,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    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();
        HashMap<Integer, Integer> counts = new HashMap<>();
        
        for (int i = 0; i < n; i++) {
            int x = getGCD(sc.nextLong(), k);
            HashMap<Integer, Integer> next = new HashMap<>();
            for (int y : counts.keySet()) {
                int z = getGCD((long)x * y, k);
                next.put(z, (next.getOrDefault(z, 0) + counts.get(y)) % MOD);
            }
            for (int y : next.keySet()) {
                counts.put(y, (counts.getOrDefault(y, 0) + next.get(y)) % MOD);
            }
            counts.put(x, (counts.getOrDefault(x, 0) + 1) % MOD);
        }
        System.out.println(counts.getOrDefault(k, 0));
    }
    
    static int getGCD(long x, long y) {
        if (x % y == 0) {
            return (int)y;
        } else {
            return getGCD(y, x % y);
        }
    }
    
}
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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0