結果

問題 No.1973 Divisor Sequence
ユーザー tentententen
提出日時 2024-04-02 14:08:50
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,710 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 742,580 KB
最終ジャッジ日時 2024-09-30 23:13:18
合計ジャッジ時間 8,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,328 KB
testcase_01 AC 57 ms
50,320 KB
testcase_02 AC 97 ms
51,848 KB
testcase_03 AC 82 ms
50,812 KB
testcase_04 AC 99 ms
51,908 KB
testcase_05 AC 78 ms
51,420 KB
testcase_06 AC 70 ms
51,236 KB
testcase_07 AC 76 ms
51,644 KB
testcase_08 AC 79 ms
51,716 KB
testcase_09 AC 94 ms
52,040 KB
testcase_10 AC 109 ms
52,596 KB
testcase_11 AC 83 ms
51,788 KB
testcase_12 AC 80 ms
51,312 KB
testcase_13 AC 75 ms
50,848 KB
testcase_14 AC 1,475 ms
62,316 KB
testcase_15 AC 119 ms
53,432 KB
testcase_16 AC 95 ms
51,748 KB
testcase_17 AC 115 ms
53,112 KB
testcase_18 AC 144 ms
53,384 KB
testcase_19 AC 114 ms
53,068 KB
testcase_20 AC 108 ms
52,192 KB
testcase_21 AC 82 ms
51,556 KB
testcase_22 AC 93 ms
51,692 KB
testcase_23 AC 143 ms
53,484 KB
testcase_24 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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();
        List<Long> divs = new ArrayList<>();
        for (long i = 1; i * i <= m; i++) {
            if (m % i == 0) {
                divs.add(i);
                if (i * i < m) {
                    divs.add(m / i);
                }
            }
        }
        int size = divs.size();
        long[][][] matrix = new long[20][size][size];
        for (int i = 0; i < size; i++) {
            long current = m / divs.get(i);
            for (int j = 0; j < size; j++) {
                if (current % divs.get(j) == 0) {
                    matrix[0][i][j] = 1;
                }
            }
        }
        for (int i = 1; i < 20; i++) {
            for (int a = 0; a < size; a++) {
                for (int b = 0; b < size; b++) {
                    for (int c = 0; c < size; 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[size];
        ans[0] = 1;
        for (int i = 19; i >= 0; i--) {
            if (n < (1 << i)) {
                continue;
            }
            n -= (1 << i);
            long[] next = new long[size];
            for (int a = 0; a < size; a++) {
                for (int b = 0; b <size; b++) {
                    next[a] += matrix[i][a][b] * ans[b] % MOD;
                    next[a] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0]);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0