結果

問題 No.2750 Number of Prime Factors
ユーザー V_MelvilleV_Melville
提出日時 2024-05-10 23:05:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 253,240 KB
実行使用メモリ 49,196 KB
最終ジャッジ日時 2024-05-10 23:05:43
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
48,300 KB
testcase_01 AC 149 ms
47,528 KB
testcase_02 AC 156 ms
48,940 KB
testcase_03 AC 151 ms
47,788 KB
testcase_04 AC 158 ms
47,660 KB
testcase_05 AC 153 ms
48,040 KB
testcase_06 AC 153 ms
49,196 KB
testcase_07 AC 157 ms
47,916 KB
testcase_08 AC 152 ms
47,660 KB
testcase_09 AC 155 ms
47,784 KB
testcase_10 AC 159 ms
47,656 KB
testcase_11 AC 159 ms
47,660 KB
testcase_12 AC 157 ms
47,920 KB
testcase_13 AC 168 ms
47,920 KB
testcase_14 AC 153 ms
48,808 KB
testcase_15 AC 146 ms
47,788 KB
testcase_16 AC 163 ms
48,432 KB
testcase_17 AC 155 ms
48,172 KB
testcase_18 AC 154 ms
48,172 KB
testcase_19 AC 156 ms
48,300 KB
testcase_20 AC 152 ms
48,556 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