結果

問題 No.1653 Squarefree
ユーザー nawawannawawan
提出日時 2021-08-20 23:26:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,229 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 206,120 KB
実行使用メモリ 28,936 KB
最終ジャッジ日時 2024-10-14 07:13:20
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
28,256 KB
testcase_01 AC 14 ms
7,156 KB
testcase_02 AC 15 ms
7,064 KB
testcase_03 AC 14 ms
7,120 KB
testcase_04 AC 14 ms
7,128 KB
testcase_05 AC 14 ms
7,264 KB
testcase_06 AC 14 ms
7,092 KB
testcase_07 AC 14 ms
7,184 KB
testcase_08 AC 15 ms
7,104 KB
testcase_09 AC 14 ms
7,096 KB
testcase_10 AC 14 ms
7,092 KB
testcase_11 AC 266 ms
27,592 KB
testcase_12 AC 256 ms
28,328 KB
testcase_13 AC 270 ms
27,172 KB
testcase_14 AC 273 ms
27,548 KB
testcase_15 AC 277 ms
27,720 KB
testcase_16 AC 277 ms
27,308 KB
testcase_17 AC 266 ms
27,720 KB
testcase_18 AC 274 ms
28,936 KB
testcase_19 AC 265 ms
28,096 KB
testcase_20 AC 273 ms
27,656 KB
testcase_21 AC 274 ms
27,784 KB
testcase_22 AC 260 ms
27,304 KB
testcase_23 AC 274 ms
28,248 KB
testcase_24 WA -
testcase_25 AC 265 ms
27,656 KB
testcase_26 AC 266 ms
27,224 KB
testcase_27 AC 249 ms
27,360 KB
testcase_28 AC 259 ms
27,672 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 252 ms
27,912 KB
testcase_32 AC 257 ms
27,592 KB
testcase_33 AC 264 ms
28,400 KB
testcase_34 AC 273 ms
27,348 KB
testcase_35 AC 269 ms
27,600 KB
testcase_36 AC 14 ms
7,120 KB
testcase_37 AC 14 ms
7,064 KB
testcase_38 AC 14 ms
7,076 KB
testcase_39 AC 14 ms
7,296 KB
testcase_40 AC 14 ms
7,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    long long L, R;
    cin >> L >> R;
    vector<int> fac(1000010);
    iota(fac.begin(), fac.end(), 0);
    for(int i = 2; i < 1000010; i++){
        if(fac[i] != i) continue;
        for(int j = i * 2; j < 1000010; j += i){
            fac[j] = i;
        }
    }
    vector<long long> t(R - L + 1);
    vector<long long> temp;
    vector<int> num(R - L + 1);
    iota(t.begin(), t.end(), L);
    for(int i = 2; i <= 1000010; i++){
        if(fac[i] != i) continue;
        for(long long j = (L + i - 1) / i * i; j <= R; j += i){
            int cnt = 0;
            while(t[j - L] % i == 0){
                t[j - L] /= i;
                cnt++;
            }
            if(cnt > 1) num[j - L] = -1;
        }
    }
    for(int i = 0; i < R - L + 1; i++){
        if(num[i] == 0) temp.push_back(L + i);
    }
    int ans = temp.size();
    for(int i = 0; i < (int)temp.size(); i++){
        long long ub = 1000000000, lb = 0;
        while(ub - lb > 1){
            long long mid = (ub + lb) / 2;
            if(mid * mid >= t[temp[i] - L]) ub = mid;
            else lb = mid;
        }
        if(ub != 1 && ub * ub == t[i]) ans--;
    }
    cout << ans << endl;
}
0