結果

問題 No.1973 Divisor Sequence
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-11 15:38:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 5,381 ms
コンパイル使用メモリ 310,076 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 07:41:39
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 47 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 28 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 30 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 25 ms
5,376 KB
testcase_10 AC 31 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 41 ms
5,376 KB
testcase_16 AC 40 ms
5,376 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 34 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 36 ms
5,376 KB
testcase_22 AC 33 ms
5,376 KB
testcase_23 AC 75 ms
5,376 KB
testcase_24 AC 103 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n; ll m; cin>>n>>m;
  vc<int>v;
  for(ll i=2;i*i<=m;i++)if(m%i==0){
    int t=0;
    while(m%i==0)m/=i,t++;
    v.pb(t);
  }
  if(m>1)v.pb(1);
  mint ans=1;
   for(int a:v){
    vc<mint>dp(a+1,0); dp[0]=1;
    rep(z,n){
      vc<mint>pre(a+1,0); swap(pre,dp);
      rep(i,a)pre[i+1]+=pre[i];
      rep(i,a+1)dp[i]=pre[a-i];
    }
    mint res=0;
    rep(i,a+1)res+=dp[i];
    ans*=res;
  }
 // for(int a:v)cout<<a<<' ';
  cout<<ans.val();
}
  
0