結果

問題 No.1973 Divisor Sequence
ユーザー umimelumimel
提出日時 2022-06-10 22:11:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,261 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 173,592 KB
実行使用メモリ 244,992 KB
最終ジャッジ日時 2024-09-21 06:25:42
合計ジャッジ時間 6,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 206 ms
83,200 KB
testcase_03 AC 10 ms
6,016 KB
testcase_04 AC 125 ms
49,832 KB
testcase_05 AC 30 ms
16,640 KB
testcase_06 AC 78 ms
44,108 KB
testcase_07 AC 20 ms
9,984 KB
testcase_08 AC 48 ms
24,704 KB
testcase_09 AC 107 ms
43,792 KB
testcase_10 AC 231 ms
73,600 KB
testcase_11 AC 23 ms
9,600 KB
testcase_12 AC 70 ms
35,892 KB
testcase_13 AC 29 ms
15,360 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll N_MAX = 2e5;

int main(){
    ll n, m;
    cin >> n >> m;

    vector<ll> div;
    for(ll i=1; i*i<=m; i++){
        if(m%i != 0) continue;
        if(i == m/i){
            div.pb(i);
        }else{
            div.pb(i);
            div.pb(m/i);
        }
    }

    vector<vector<ll>> cnt(n, vector<ll>((ll)div.size(), 0));
    rep(i, (ll)div.size()) cnt[0][i] = 1;
    vector<vector<ll>> P((ll)div.size());
    rep(i, (ll)div.size()){
        rep(j, (ll)div.size()){
            if(m%(div[i]*div[j]) == 0){
                P[i].pb(j);
            }
        }
    }

    for(ll i=1; i<n; i++){
        rep(j, (ll)div.size()){
            for(ll k : P[j]){
                cnt[i][j] += cnt[i-1][k];
                cnt[i][j] %= MOD;
            }
        }
    }

    ll ans = 0;
    rep(i, (ll)div.size()){
        ans += cnt[n-1][i];
        ans %= MOD;
    }

    cout << ans << endl;
}
0