結果

問題 No.2750 Number of Prime Factors
ユーザー Spica08Spica08
提出日時 2024-05-10 21:50:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 204,296 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2024-05-10 21:51:04
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
7,728 KB
testcase_01 AC 33 ms
7,824 KB
testcase_02 AC 31 ms
7,804 KB
testcase_03 AC 31 ms
7,752 KB
testcase_04 AC 33 ms
7,828 KB
testcase_05 AC 32 ms
7,776 KB
testcase_06 AC 35 ms
7,768 KB
testcase_07 AC 30 ms
7,736 KB
testcase_08 AC 31 ms
7,704 KB
testcase_09 AC 36 ms
7,728 KB
testcase_10 AC 32 ms
7,732 KB
testcase_11 AC 31 ms
7,756 KB
testcase_12 AC 32 ms
7,728 KB
testcase_13 AC 30 ms
7,740 KB
testcase_14 AC 31 ms
7,792 KB
testcase_15 AC 31 ms
7,772 KB
testcase_16 AC 33 ms
7,736 KB
testcase_17 AC 32 ms
7,740 KB
testcase_18 AC 31 ms
7,792 KB
testcase_19 AC 32 ms
7,736 KB
testcase_20 AC 31 ms
7,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using Matrix = vector<vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

struct Eratosthenes{
  int N;
  vector<int> min_f;
  vector<int> prime;
  
  Eratosthenes(int N) : N(N){min_f.assign(N, 1000000000);}

  void build(){
    min_f[0] = 1;
    min_f[1] = 1;
    for (int i = 2; i < N; i++) {
      for (int j = 2; i * j < N; j++) {
        min_f[i * j] = min(i, min_f[i * j]);
      }
    }
    for (int i = 0; i < N; i++) {
      if (min_f[i] != inf) continue;
      prime.push_back(i);
    }
  }
};

int main(){
  ll N;cin>>N;
  Eratosthenes e(1000000);
  e.build();
  ll now = 1;
  int id = 0;
  while(now <= N / e.prime[id]){
    now *= e.prime[id];
    id++;
  }
  cout << id << endl;
  return 0;
}
0