結果

問題 No.1973 Divisor Sequence
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-17 16:46:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,087 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 2,566 ms
コンパイル使用メモリ 207,460 KB
実行使用メモリ 100,868 KB
最終ジャッジ日時 2024-06-17 16:46:45
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 148 ms
29,788 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 81 ms
18,688 KB
testcase_05 AC 28 ms
16,484 KB
testcase_06 AC 89 ms
25,168 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 46 ms
14,816 KB
testcase_09 AC 71 ms
16,672 KB
testcase_10 AC 92 ms
20,132 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 74 ms
20,756 KB
testcase_13 AC 25 ms
8,064 KB
testcase_14 AC 58 ms
11,904 KB
testcase_15 AC 128 ms
21,836 KB
testcase_16 AC 121 ms
25,996 KB
testcase_17 AC 78 ms
17,236 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 106 ms
21,816 KB
testcase_20 AC 19 ms
6,944 KB
testcase_21 AC 113 ms
30,216 KB
testcase_22 AC 101 ms
21,932 KB
testcase_23 AC 1,087 ms
100,868 KB
testcase_24 AC 286 ms
38,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint1000000007;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

mint calc(int n, int cnt) {
    vector<vector<mint>> dp(n, vector<mint>(cnt + 1));
    for (int i = 0; i <= cnt; i++) {
        dp[0][i] = 1;
    }
    for (int i = 1; i < n; i++) {
        for (int j = 0; j <= cnt; j++) {
            for (int k = 0; k <= cnt; k++) {
                if (j + k <= cnt) {
                    dp[i][k] += dp[i - 1][j];
                }
            }
        }
    }
    mint res = 0;
    for (int i = 0; i <= cnt; i++) {
        res += dp[n - 1][i];
    }
    return res;
}
int main() {
    fast_io();
    int n;
    long long m;
    cin >> n >> m;
    mint ans = 1;
    for (long long i = 2; i * i <= m; i++) {
        if (m % i == 0) {
            int cnt = 0;
            while (m % i == 0) {
                m /= i;
                cnt++;
            }
            ans *= calc(n, cnt);
        }
    }
    if (m > 1) {
        ans *= calc(n, 1);
    }
    cout << ans.val() << endl;
}
0