結果

問題 No.1973 Divisor Sequence
ユーザー asaringoasaringo
提出日時 2022-06-11 00:55:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 867 ms / 2,000 ms
コード長 1,350 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 208,776 KB
実行使用メモリ 178,996 KB
最終ジャッジ日時 2024-09-21 08:08:34
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 171 ms
29,896 KB
testcase_03 AC 9 ms
5,560 KB
testcase_04 AC 98 ms
18,892 KB
testcase_05 AC 32 ms
16,640 KB
testcase_06 AC 100 ms
25,236 KB
testcase_07 AC 20 ms
7,000 KB
testcase_08 AC 53 ms
14,796 KB
testcase_09 AC 83 ms
16,876 KB
testcase_10 AC 101 ms
20,184 KB
testcase_11 AC 14 ms
5,640 KB
testcase_12 AC 79 ms
20,864 KB
testcase_13 AC 25 ms
8,320 KB
testcase_14 AC 59 ms
17,664 KB
testcase_15 AC 143 ms
21,812 KB
testcase_16 AC 140 ms
26,104 KB
testcase_17 AC 90 ms
17,356 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 118 ms
21,888 KB
testcase_20 AC 21 ms
6,388 KB
testcase_21 AC 130 ms
30,284 KB
testcase_22 AC 120 ms
21,888 KB
testcase_23 AC 867 ms
178,996 KB
testcase_24 AC 319 ms
46,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
#define fast_input_output ios::sync_with_stdio(false); cin.tie(nullptr);
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"

const int mod = 1000000007 ;

ll n , m ;

int main(){
    // fast_input_output
    cin >> n >> m ;
    vector<P> vec ;
    for(ll i = 2 ; i * i <= m ; i++){
        if(m % i != 0) continue;
        int ex = 0 ;
        while(m % i == 0){
            ex++ ;
            m /= i ;
        }
        vec.push_back(P(i,ex)) ;
    }
    if(m != 1) vec.push_back(P(m,1)) ;
    int a = vec.size() ;
    ll res = 1 ;
    rep(p,a){
        auto[val,ex] = vec[p];
        vector<vector<ll>> dp(n,vector<ll>(ex+1,0)) ;
        rep(i,ex+1) dp[0][i] = 1 ;
        rep(i,n-1) rep(j,ex+1){
            rep(k,ex+1){
                if(j + k > ex) break;
                (dp[i+1][k] += dp[i][j]) %= mod ;
            }
        }
        ll sum = 0 ;
        rep(i,ex+1) (sum += dp[n-1][i]) %= mod ;
        (res *= sum) %= mod ;
    }
    cout << res << endl ;
}
0