結果

問題 No.1659 Product of Divisors
ユーザー 👑 NachiaNachia
提出日時 2021-08-27 21:53:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,168 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 95,820 KB
実行使用メモリ 13,648 KB
最終ジャッジ日時 2024-11-21 02:04:34
合計ジャッジ時間 35,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 7 ms
9,888 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
9,892 KB
testcase_04 AC 11 ms
13,636 KB
testcase_05 AC 151 ms
10,016 KB
testcase_06 AC 43 ms
13,640 KB
testcase_07 AC 16 ms
9,892 KB
testcase_08 AC 2 ms
13,648 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 AC 2 ms
10,016 KB
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <atcoder/modint>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


vector<pair<u64,u64>> factorize(u64 N){
  vector<pair<u64,u64>> res;
  for(u64 i=2; i*i<=N; i++){
    if(N%i) continue;
    res.push_back({i,0});
    while(N%i==0){ N/=i; res.back().second++; }
  }
  if(N!=1) res.push_back({N,1});
  return move(res);
}
vector<u64> divs(vector<pair<u64,u64>> F){
  vector<u64> res = {1};
  for(auto f:F){
    int t=res.size() * f.second;
    rep(i,t) res.push_back(res[i] * f.first);
  }
  return move(res);
}


using m32 = atcoder::static_modint<1000000007>;

m32 Comb(int n, int r){
  m32 ans = 1;
  rep(i,r) ans /= (i+1);
  rep(i,r) ans *= n-i;
  return ans;
}


int main(){
  u64 N,K; cin >> N >> K;

  auto F = factorize(N);
  m32 ans = 1;
  for(auto f : F){
    ans *= Comb(f.second + K, K);
  }
  cout << ans.val() << endl;
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;




0