結果

問題 No.2750 Number of Prime Factors
ユーザー V_MelvilleV_Melville
提出日時 2024-05-10 23:05:35
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 3,177 ms
コンパイル使用メモリ 252,632 KB
実行使用メモリ 48,808 KB
最終ジャッジ日時 2024-12-20 07:16:11
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
47,784 KB
testcase_01 AC 160 ms
47,792 KB
testcase_02 AC 156 ms
47,664 KB
testcase_03 AC 160 ms
47,916 KB
testcase_04 AC 173 ms
48,300 KB
testcase_05 AC 172 ms
48,176 KB
testcase_06 AC 170 ms
47,528 KB
testcase_07 AC 163 ms
48,040 KB
testcase_08 AC 153 ms
48,808 KB
testcase_09 AC 157 ms
47,532 KB
testcase_10 AC 164 ms
48,424 KB
testcase_11 AC 168 ms
47,660 KB
testcase_12 AC 164 ms
48,424 KB
testcase_13 AC 166 ms
47,784 KB
testcase_14 AC 163 ms
47,912 KB
testcase_15 AC 157 ms
48,560 KB
testcase_16 AC 169 ms
48,432 KB
testcase_17 AC 178 ms
47,788 KB
testcase_18 AC 171 ms
48,688 KB
testcase_19 AC 160 ms
47,660 KB
testcase_20 AC 158 ms
47,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using ll = long long;

// linear sieve
vector<bool> isp;
vector<int> ps, pf;
void sieve(int mx) {
    isp.resize(mx+1);
    pf.resize(mx+1);
    rep(i, mx+1) pf[i] = i;
    for (int i = 2; i <= mx; ++i) {
        if (pf[i] == i) isp[i] = true, ps.push_back(i);
        rep(j, ps.size()) {
            int x = ps[j] * i;
            if (x > mx) break;
            pf[x] = ps[j];
        }
    }
}

int main() {
    sieve(1e7);
    ll n;
    cin >> n;
    
    __int128_t now = 1;
    int ans = 0;
    for (int p : ps) {
        if (now*p > n) break;
        now *= p;
        ans++;
    }
    
    cout << ans << '\n';
    
    return 0;
}
0