結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 14 ms
7,096 KB
testcase_02 AC 14 ms
7,088 KB
testcase_03 AC 15 ms
7,104 KB
testcase_04 AC 14 ms
7,196 KB
testcase_05 AC 14 ms
7,236 KB
testcase_06 AC 15 ms
7,112 KB
testcase_07 AC 14 ms
7,092 KB
testcase_08 AC 14 ms
7,232 KB
testcase_09 AC 15 ms
7,064 KB
testcase_10 AC 14 ms
7,108 KB
testcase_11 AC 262 ms
27,712 KB
testcase_12 AC 266 ms
27,632 KB
testcase_13 AC 279 ms
28,636 KB
testcase_14 AC 277 ms
28,212 KB
testcase_15 AC 270 ms
27,376 KB
testcase_16 AC 269 ms
28,556 KB
testcase_17 AC 277 ms
28,200 KB
testcase_18 AC 248 ms
27,312 KB
testcase_19 AC 258 ms
27,744 KB
testcase_20 AC 254 ms
27,456 KB
testcase_21 AC 282 ms
28,760 KB
testcase_22 AC 255 ms
27,308 KB
testcase_23 AC 264 ms
27,336 KB
testcase_24 WA -
testcase_25 AC 272 ms
28,140 KB
testcase_26 AC 263 ms
28,332 KB
testcase_27 AC 267 ms
27,212 KB
testcase_28 AC 270 ms
28,576 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 281 ms
28,568 KB
testcase_32 AC 270 ms
28,588 KB
testcase_33 AC 270 ms
27,692 KB
testcase_34 AC 260 ms
28,208 KB
testcase_35 AC 266 ms
27,356 KB
testcase_36 AC 14 ms
7,092 KB
testcase_37 WA -
testcase_38 AC 15 ms
7,168 KB
testcase_39 AC 14 ms
7,236 KB
testcase_40 AC 14 ms
7,092 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