結果

問題 No.2798 Multiple Chain
ユーザー moguramogura
提出日時 2024-07-09 23:36:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,279 bytes
コンパイル時間 4,128 ms
コンパイル使用メモリ 232,988 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-09 23:36:25
合計ジャッジ時間 5,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 6 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < n; i++)
#define all(a) a.begin(),a.end()
#define SORT(a) sort(all(a));
#define MIN(a) *min_element(all(a))
#define MAX(a) *max_element(all(a))
#define SUM(a) accumulate(all(a),0LL)
using ll=long long;
using ld=long double;
using ull=unsigned long;
ll MOD=998244353;
using mint = static_modint<998244353>;
const int dx[]={0,1,0,-1,1,-1,1,-1};const int dy[]={1,0,-1,0,1,1,-1,-1};
const string ALPHA="ABCDEFGHIJKLMNOPQRSTUVWXYZ";const string alpha="abcdefghijklmnopqrstuvwxyz";
bool IsPrime(ll num){
    if(num<2){
        return false;
    }else if(num==2){
        return true;
    }else if(num % 2 == 0){
        return false;
    }
    double sqrtNum=sqrt(num);
    for(ll i=3;i<=sqrtNum;i+=2){
        if(num%i==0){
            return false;
        }
    }
    return true;
}
long long partition(int n) {
    vector<long long> p(n + 1, 0);
    p[0] = 1LL; // 空の和の方法が1つ(何も選ばない)

    for (int k = 1; k <= n; ++k) {
        for (int i = k; i <= n; ++i) {
            p[i] += p[i - k];
        }
    }

    return p[n];
}
vector<pair<long long, int>> prime_factors(long long n) {
    vector<pair<long long, int>> factors;

    // 2で割れるだけ割る
    while (n % 2 == 0) {
        if (factors.empty() || factors.back().first != 2) {
            factors.push_back({2, 0});
        }
        factors.back().second++;
        n /= 2;
    }

    // 3以上の奇数で割り続ける
    for (long long i = 3; i * i * i-1 <= n; i += 2) {
        while (n % i == 0) {
            if (factors.empty() || factors.back().first != i) {
                factors.push_back({i, 0});
            }
            factors.back().second++;
            n /= i;
        }
    }

    // nが素数の場合
    if (n > 1) {
        factors.push_back({n, 1});
    }

    return factors;
}
int main(){
  cin.tie(nullptr);
  cout.tie(nullptr);
  ios::sync_with_stdio(false);
  ll n;cin>>n;
  if(floor(sqrt(n))==sqrt(n)&&IsPrime(sqrt(n))){cout<<2<<endl;return 0;}
  int ans=1;
  vector<pair<long long, int>> factors = prime_factors(n);
  for(ll i=0;i<factors.size();i++){
  	ans*=partition(factors[i].second);
  }
  cout<<ans<<endl;
	
}
0