結果

問題 No.2902 ZERO!!
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2024-09-15 01:27:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 2,781 bytes
コンパイル時間 3,207 ms
コンパイル使用メモリ 253,248 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-15 01:27:44
合計ジャッジ時間 5,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 36 ms
7,936 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 18 ms
5,504 KB
testcase_06 AC 33 ms
7,680 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 32 ms
7,296 KB
testcase_09 AC 31 ms
7,040 KB
testcase_10 AC 23 ms
6,144 KB
testcase_11 AC 19 ms
5,632 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 31 ms
7,168 KB
testcase_14 AC 25 ms
6,272 KB
testcase_15 AC 27 ms
6,656 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 31 ms
7,040 KB
testcase_18 AC 28 ms
7,040 KB
testcase_19 AC 26 ms
6,528 KB
testcase_20 AC 22 ms
6,016 KB
testcase_21 AC 24 ms
6,272 KB
testcase_22 AC 13 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 2 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 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 3 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
権限があれば一括ダウンロードができます

ソースコード

diff #

//using ChatGPT o1-mini

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

const int MOD = 998244353;

// エラトステネスの篩で素数を列挙
vector<int> sieve(int n){
    vector<bool> is_prime(n+1, true);
    is_prime[0] = is_prime[1] = false;
    for(int i=2; i*i <=n; ++i){
        if(is_prime[i]){
            for(int j=i*i; j<=n; j+=i){
                is_prime[j] = false;
            }
        }
    }
    vector<int> primes;
    primes.reserve(80000); // 約78498個
    for(int i=2; i<=n; ++i){
        if(is_prime[i]) primes.push_back(i);
    }
    return primes;
}

// 各素数pについてN!におけるpの指数V_pを計算
vector<int> compute_Vp(int N, const vector<int>& primes){
    vector<int> Vp;
    Vp.reserve(primes.size());
    for(auto p : primes){
        int vp = 0;
        ll pp = p;
        while(pp <= N){
            vp += N / pp;
            if(pp > N / p) break; // オーバーフロー防止
            pp *= p;
        }
        Vp.push_back(vp);
    }
    return Vp;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    // 素数の列挙
    vector<int> primes = sieve(N);
    // 各素数のV_pを計算
    vector<int> Vp = compute_Vp(N, primes);
    
    // V_maxを求める
    int V_max = 0;
    for(auto vp : Vp){
        V_max = max(V_max, vp);
    }
    
    // Vpの頻度をカウント
    // ここでは頻度を後でグループ化するために使用
    // 同じV_pを持つ素数の数を数える
    // 最大 V_p は N
    vector<int> freq(V_max + 2, 0);
    for(auto vp : Vp){
        freq[vp]++;
    }
    
    // 素数を降順にソートしておく(V_pが高い順)
    sort(Vp.begin(), Vp.end(), [&](const int a, const int b) -> bool{
        return a > b;
    });
    
    ll S = 0;
    // ループをe=1からV_maxまで行う
    for(int e=1; e<=V_max; ++e){
        ll prod = 1;
        // すべての素数について floor(V_p /e) +1 を掛け合わせる
        // ここで、V_p >= e となる素数のみ考慮
        // 素数はV_pが降順にソートされているため、V_p < e になったら終了
        for(auto vp : Vp){
            if(vp < e){
                break;
            }
            ll term = (vp / e) + 1;
            prod = (prod * term) % MOD;
            // オーバーフロー防止のため、prodが0になったら終了
            if(prod == 0){
                break;
            }
        }
        // b=1を除外するために-1
        ll count_e = (prod - 1 + MOD) % MOD;
        S = (S + count_e) % MOD;
        // eが大きくなるにつれて、prodが1になる(count_e=0)ので、終了
        if(prod ==1){
            break;
        }
    }
    
    cout << S;
}
0