結果

問題 No.2750 Number of Prime Factors
ユーザー yumekawayui
提出日時 2024-05-12 16:41:08
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,092 bytes
コンパイル時間 4,703 ms
コンパイル使用メモリ 189,952 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-20 09:10:05
合計ジャッジ時間 5,529 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>
using namespace std;
const vector<int> dx = {0, 0, 1, -1};
const vector<int> dy = {1, -1, 0, 0};
#define vec vector
#define int long long
#define double long double
//cout<<setprecision(15)<<fixed<<..
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define req(i, x, n) for (int i = x; i < (int)(n); i++)
#define pii pair<int,int>
#define pq priority_queue
#define all(V) begin(V),end(V)
#define printpair(p) cout<<p.first<<" "<<p.second<<"\n"
#define tple tuple<int,int,int>
template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; }
#define nexper(Z) next_permutation(all(Z))
#define pb push_back

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n;
    cin>>n;
    vec<int> A={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47};
    int cur=1,cnt=0;
    rep(i,15){
        if(cur*A[i]<=n){
            cur*=A[i];
            cnt++;
        }
    }
    cout<<cnt;

}
0