結果

問題 No.1973 Divisor Sequence
ユーザー tentententen
提出日時 2023-07-24 17:34:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 3,388 bytes
コンパイル時間 2,705 ms
コンパイル使用メモリ 84,484 KB
実行使用メモリ 55,940 KB
最終ジャッジ日時 2024-04-08 21:44:34
合計ジャッジ時間 5,108 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
54,004 KB
testcase_01 AC 55 ms
53,980 KB
testcase_02 AC 57 ms
54,004 KB
testcase_03 AC 65 ms
54,768 KB
testcase_04 AC 54 ms
54,008 KB
testcase_05 AC 78 ms
55,416 KB
testcase_06 AC 55 ms
53,988 KB
testcase_07 AC 73 ms
54,776 KB
testcase_08 AC 55 ms
54,000 KB
testcase_09 AC 54 ms
54,016 KB
testcase_10 AC 56 ms
53,980 KB
testcase_11 AC 55 ms
54,000 KB
testcase_12 AC 59 ms
54,008 KB
testcase_13 AC 56 ms
54,004 KB
testcase_14 AC 59 ms
53,992 KB
testcase_15 AC 55 ms
53,992 KB
testcase_16 AC 56 ms
54,004 KB
testcase_17 AC 55 ms
53,984 KB
testcase_18 AC 57 ms
53,984 KB
testcase_19 AC 55 ms
54,000 KB
testcase_20 AC 59 ms
54,016 KB
testcase_21 AC 56 ms
53,988 KB
testcase_22 AC 55 ms
54,012 KB
testcase_23 AC 100 ms
55,940 KB
testcase_24 AC 57 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt() - 1;
        long m = sc.nextLong();
        HashMap<Long, Integer> counts = new HashMap<>();
        for (long i = 2; i <= Math.sqrt(m); i++) {
            while (m % i == 0) {
                counts.put(i, counts.getOrDefault(i, 0) + 1);
                m /= i;
            }
        }
        if (m > 1) {
            counts.put(m, 1);
        }
        long result = 1;
        for (int x : counts.values()) {
            long[][][] matrix = new long[20][x + 1][x + 1];
            for (int i = 0; i <= x; i++) {
                for (int j = 0; j + i <= x; j++) {
                    matrix[0][i][j] = 1;
                }
            }
            for (int i = 1; i < 20; i++) {
                for (int a = 0; a <= x; a++) {
                    for (int b = 0; b <= x; b++) {
                        for (int c = 0; c <= x; c++) {
                            matrix[i][a][c] += matrix[i - 1][a][b] * matrix[i - 1][b][c] % MOD;
                            matrix[i][a][c] %= MOD;
                        }
                    }
                }
            }
            long[] ans = new long[x + 1];
            int current = n;
            Arrays.fill(ans, 1);
            for (int i = 19; i >= 0; i--) {
                if (current < (1 << i)) {
                    continue;
                }
                current -= (1 << i);
                long[] next = new long[x + 1];
                for (int a = 0; a <= x; a++) {
                    for (int b = 0; b <= x; b++) {
                        next[a] += matrix[i][a][b] * ans[b] % MOD;
                        next[a] %= MOD;
                    }
                }
                ans = next;
            }
            long tmp = 0;
            for (long y : ans) {
                tmp += y;
                tmp %= MOD;
            }
            result *= tmp;
            result %= MOD;
        }
        System.out.println(result);
    }
    
}
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