結果

問題 No.2750 Number of Prime Factors
ユーザー 矢澤式WINTER矢澤式WINTER
提出日時 2024-05-10 21:28:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,170 bytes
コンパイル時間 4,929 ms
コンパイル使用メモリ 314,572 KB
実行使用メモリ 7,952 KB
最終ジャッジ日時 2024-05-10 21:28:26
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,824 KB
testcase_01 AC 11 ms
7,824 KB
testcase_02 AC 10 ms
7,828 KB
testcase_03 AC 10 ms
7,824 KB
testcase_04 AC 10 ms
7,820 KB
testcase_05 AC 11 ms
7,824 KB
testcase_06 AC 10 ms
7,820 KB
testcase_07 AC 10 ms
7,824 KB
testcase_08 WA -
testcase_09 AC 10 ms
7,952 KB
testcase_10 AC 11 ms
7,820 KB
testcase_11 AC 11 ms
7,824 KB
testcase_12 AC 12 ms
7,824 KB
testcase_13 AC 11 ms
7,828 KB
testcase_14 AC 10 ms
7,820 KB
testcase_15 AC 10 ms
7,824 KB
testcase_16 AC 9 ms
7,820 KB
testcase_17 AC 12 ms
7,828 KB
testcase_18 AC 11 ms
7,824 KB
testcase_19 AC 10 ms
7,824 KB
testcase_20 AC 10 ms
7,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//*/
#include <atcoder/all>
using namespace atcoder;
//*/
#define rep(i,n) for(int i=0;i<n;i++)
#define Rep(i,a,b) for(int i=a;i<b;i++)
#define ALL(x) (x).begin(),(x).end()
#define dbgv(x); for(auto now : x) cout << now << " "; cout << endl;
//using P = pair<int,int>;
using ll = long long;
using ull = unsigned long long;
//*/
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
typedef vector<int> vint;
random_device rnd;
mt19937 rng(rnd());

using P = pair<long long,long long>;
//sieve.primesでsieve(num)のnum以下の素数たちのリストが取れる
struct Sieve {
  int n;
  vector<int> f, primes;
  Sieve(int n=1):n(n), f(n+1) {
    f[0] = f[1] = -1;
    for (ll i = 2; i <= n; ++i) {
      if (f[i]) continue;
      primes.push_back(i);
      f[i] = i;
      for (ll j = i*i; j <= n; j += i) {
        if (!f[j]) f[j] = i;
      }
    }
  }
  bool isPrime(int x) { return f[x] == x;}
  vector<int> factorList(int x) {
    vector<int> res;
    while (x != 1) {
      res.push_back(f[x]);
      x /= f[x];
    }
    return res;
  }
  vector<P> factor(int x) {
    vector<int> fl = factorList(x);
    if (fl.size() == 0) return {};
    vector<P> res(1, P(fl[0], 0));
    for (int p : fl) {
      if (res.back().first == p) {
        res.back().second++;
      } else {
        res.emplace_back(p, 1);
      }
    }
    return res;
  }
  vector<pair<ll,int>> factor(ll x) {
    vector<pair<ll,int>> res;
    for (int p : primes) {
      int y = 0;
      while (x%p == 0) x /= p, ++y;
      if (y != 0) res.emplace_back(p,y);
    }
    if (x != 1) res.emplace_back(x,1);
    return res;
  }
} sieve(1e6);

void solve(){
  ull n,s=1; cin >> n;
  auto v = sieve.primes;
  for(int i = 1;i <= n;i++){
    if(s > n){
      cout << i-2 << endl;
      return;
    }
    s *= v[i-1];
  }
}


int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int t = 1; //cin >> t;
  rep(testcases,t) solve();
}
0