結果

問題 No.2798 Multiple Chain
ユーザー Akidai16Akidai16
提出日時 2024-07-23 17:50:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,802 bytes
コンパイル時間 4,607 ms
コンパイル使用メモリ 268,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-23 17:50:53
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
constexpr ll mod = 1e9 + 7;
constexpr ll INF = 1LL << 60;

#define REP(i, init, n) for(int i = (int)(init); i < (int)(n); i++)
#define RREP(i, init, n) for(int i = (int)(init); i >= (int)(n); i--)
#define All(A) A.begin(), A.end()
#define rAll(A) A.rbegin(), A.rend()

#define vi vector<int>
#define vl vector<long>
#define vvi vector<vector<int>>
#define vvl vector<vector<long>>
#define pint pair<int, int>
#define plong pair<long, long>

long N;

vector<plong> prime_factorization(long n) {
    vector<plong> res;
    long p = 2;
    while(n >= p * p && p <= 1000000) {
        int cnt = 0;
        while(n % p == 0) {
            cnt++;
            n /= p;
        }
        if(cnt != 0) res.push_back({p, cnt});
        p++;
    }
    if(n > 1) res.push_back({n, 1});
    return res;
}

bool is_square(long n) {
    long sq = sqrtl(n);
    return sq * sq == n;
}

void solve() {
    vector dp(61, vector(61, 0L));
    dp[0][0] = 1;
    REP(i, 1, 61) {
        REP(j, 1, 61) {
            dp[i][j] = dp[i - 1][j - 1];
            if(i - j >= 0) {
                dp[i][j] += dp[i - j][j];
            }
        }
    }

    vl cnt(61, 0);
    REP(i, 1, 61) {
        REP(j, 1, 61) {
            cnt[i] += dp[i][j];
        }
    }

    auto pf = prime_factorization(N);
    long ans = 1;
    for(auto p : pf) {
        if(p.first > 1000000000000L) {
            if(is_square(p.first)) {
                ans *= cnt[2];
            } else {
                ans *= cnt[1];
            }
            continue;
        }

        ans *= cnt[p.second];
    }
    cout << ans << endl;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    cin >> N;
    solve();
}
0