結果

問題 No.1653 Squarefree
ユーザー T101010101T101010101
提出日時 2023-01-08 18:54:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 4,115 bytes
コンパイル時間 4,096 ms
コンパイル使用メモリ 262,700 KB
実行使用メモリ 11,852 KB
最終ジャッジ日時 2023-08-22 04:27:13
合計ジャッジ時間 8,445 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
11,596 KB
testcase_01 AC 9 ms
4,380 KB
testcase_02 AC 9 ms
4,376 KB
testcase_03 AC 10 ms
4,380 KB
testcase_04 AC 9 ms
4,376 KB
testcase_05 AC 9 ms
4,380 KB
testcase_06 AC 9 ms
4,376 KB
testcase_07 AC 9 ms
4,496 KB
testcase_08 AC 9 ms
4,380 KB
testcase_09 AC 9 ms
4,376 KB
testcase_10 AC 9 ms
4,380 KB
testcase_11 AC 101 ms
11,656 KB
testcase_12 AC 105 ms
11,768 KB
testcase_13 AC 119 ms
11,656 KB
testcase_14 AC 124 ms
11,652 KB
testcase_15 AC 116 ms
11,704 KB
testcase_16 AC 114 ms
11,776 KB
testcase_17 AC 119 ms
11,808 KB
testcase_18 AC 118 ms
11,684 KB
testcase_19 AC 115 ms
11,724 KB
testcase_20 AC 116 ms
11,660 KB
testcase_21 AC 119 ms
11,732 KB
testcase_22 AC 115 ms
11,680 KB
testcase_23 AC 109 ms
11,684 KB
testcase_24 AC 121 ms
11,804 KB
testcase_25 AC 114 ms
11,580 KB
testcase_26 AC 109 ms
11,704 KB
testcase_27 AC 117 ms
11,668 KB
testcase_28 AC 120 ms
11,684 KB
testcase_29 AC 112 ms
11,624 KB
testcase_30 AC 115 ms
11,764 KB
testcase_31 AC 119 ms
11,628 KB
testcase_32 AC 109 ms
11,648 KB
testcase_33 AC 115 ms
11,664 KB
testcase_34 AC 108 ms
11,852 KB
testcase_35 AC 121 ms
11,684 KB
testcase_36 AC 10 ms
4,380 KB
testcase_37 AC 10 ms
4,376 KB
testcase_38 AC 10 ms
4,376 KB
testcase_39 AC 10 ms
4,380 KB
testcase_40 AC 11 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros

#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
// using namespace __gnu_cxx;

// #include <boost/multiprecision/cpp_int.hpp>
// namespace mp = boost::multiprecision;
// using Bint = mp::cpp_int;

#define TO_STRING(var) # var
#define pb emplace_back
#define int ll
#define endl '\n'

using ll = long long;
using ld = long double;
const ld PI = acos(-1);
const ld EPS = 1e-10;
const int INF = 1 << 30;
const ll INFL = 1LL << 61;
// const int MOD = 998244353;
const int MOD = 1000000007;

__attribute__((constructor))
void constructor() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    cout << fixed << setprecision(15);
}

template<int mod> class modint{
public:
    int val = 0;
    modint(int x = 0) { while (x < 0) x += mod; val = x % mod; }
    modint(const modint &r) { val = r.val; }

    modint operator -() { return modint(-val); }
    modint operator +(const modint &r) { return modint(*this) += r; }
    modint operator -(const modint &r) { return modint(*this) -= r; }
    modint operator *(const modint &r) { return modint(*this) *= r; }
    modint operator /(const modint &r) { return modint(*this) /= r; }

    modint &operator +=(const modint &r) {
        val += r.val;
        if (val >= mod) val -= mod;
        return *this;
    }
    modint &operator -=(const modint &r) {
        if (val < r.val) val += mod;
        val -= r.val;
        return *this;
    }
    modint &operator *=(const modint &r) {
        val = val * r.val % mod;
        return *this;
    }
    modint &operator /=(const modint &r) {
        int a = r.val, b = mod, u = 1, v = 0;
        while (b) {
            int t = a / b;
            a -= t * b; swap(a, b);
            u -= t * v; swap(u, v);
        }
        val = val * u % mod;
        if (val < 0) val += mod;
        return *this;
    }

    bool operator ==(const modint& r) { return this -> val == r.val; }
    bool operator <(const modint& r) { return this -> val < r.val; }
    bool operator !=(const modint& r) { return this -> val != r.val; }
};

using mint = modint<MOD>;

istream &operator >>(istream &is, mint& x) {
    int t; is >> t;
    x = t;
    return (is);
}
ostream &operator <<(ostream &os, const mint& x) {
    return os << x.val;
}

mint modpow(const mint &a, int n) {
    if (n == 0) return 1;
    mint t = modpow(a, n / 2);
    t = t * t;
    if (n & 1) t = t * a;
    return t;
}

int modpow(int x, int n, int mod) {
    int ret = 1;
    while (n > 0) {
        if (n % 2 == 1) ret = ret * x % mod;
        x = x * x % mod;
        n /= 2;
    }
    return ret;
}

int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); }

#pragma endregion

vector<bool> erat(int n) {

    vector<bool> prime(n + 1, true);
    prime[0] = false;
    if (n >= 1) prime[1] = false;

    for (int i = 2; i * i <= n; i++) {
        if (prime[i]) {
            for (int j = i + i; j <= n; j += i) {
                prime[j] = false;
            }
        }
    }

    return prime;
}

signed main() {
	int L, R;
    cin >> L >> R;

    vector<bool> E = erat(1e6);
    vector<int> P;
    for (int i = 2; i < 1e6; i++) {
        if (E[i]) P.pb(i);
    }
    int sz = P.size();

    vector<int> A(R - L + 1);
    for (int i = 0; i < R - L + 1; i++) {
        A[i] = L + i;
    }

    for (int i = 0; i < sz; i++) {
        if (P[i] > R) break;
        int cur = ceil(L, P[i]) * P[i]; // L以上で最小のP[i]の倍数
        for (int j = cur; j <= R; j += P[i]) { // Aのうち、P[i]の倍数だけ見る
            int cnt = 0;
            while (A[j - L] % P[i] == 0 && cnt < 2) {
                A[j - L] /= P[i];
                cnt++;
            }
            if (cnt >= 2) A[j - L] = -1; // 平方数で割り切れる
        }
    }

    int ans = 0;
    for (int i = 0; i < R - L + 1; i++) {
        if (A[i] == -1) continue;
        if (A[i] == 1) ans++;
        else {
            int p = round(sqrt(A[i]));
            if (p * p == A[i]) continue;
            ans++;
        }
    }
    cout << ans << endl;
}
0