結果

問題 No.1653 Squarefree
ユーザー chocoruskchocorusk
提出日時 2021-06-13 04:30:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 1,202 bytes
コンパイル時間 7,753 ms
コンパイル使用メモリ 248,372 KB
実行使用メモリ 13,512 KB
最終ジャッジ日時 2024-10-14 08:15:48
合計ジャッジ時間 15,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
12,200 KB
testcase_01 AC 11 ms
6,816 KB
testcase_02 AC 12 ms
6,816 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 11 ms
6,820 KB
testcase_06 AC 12 ms
7,880 KB
testcase_07 AC 12 ms
6,816 KB
testcase_08 AC 12 ms
6,820 KB
testcase_09 AC 12 ms
6,820 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 202 ms
12,664 KB
testcase_12 AC 206 ms
11,788 KB
testcase_13 AC 272 ms
12,432 KB
testcase_14 AC 269 ms
12,452 KB
testcase_15 AC 278 ms
13,268 KB
testcase_16 AC 283 ms
12,860 KB
testcase_17 AC 275 ms
13,440 KB
testcase_18 AC 274 ms
12,176 KB
testcase_19 AC 269 ms
12,280 KB
testcase_20 AC 266 ms
12,108 KB
testcase_21 AC 272 ms
11,904 KB
testcase_22 AC 263 ms
12,940 KB
testcase_23 AC 255 ms
12,116 KB
testcase_24 AC 263 ms
12,268 KB
testcase_25 AC 273 ms
12,388 KB
testcase_26 AC 272 ms
13,428 KB
testcase_27 AC 266 ms
12,044 KB
testcase_28 AC 255 ms
12,280 KB
testcase_29 AC 266 ms
12,560 KB
testcase_30 AC 266 ms
13,512 KB
testcase_31 AC 274 ms
12,176 KB
testcase_32 AC 275 ms
12,184 KB
testcase_33 AC 288 ms
11,796 KB
testcase_34 AC 272 ms
13,212 KB
testcase_35 AC 278 ms
11,896 KB
testcase_36 AC 11 ms
6,820 KB
testcase_37 AC 12 ms
6,820 KB
testcase_38 AC 12 ms
6,816 KB
testcase_39 AC 12 ms
6,816 KB
testcase_40 AC 12 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bitset>
#include "testlib.h"
using namespace std;
typedef long long ll;
const int MAX=1000010;
bitset<MAX> isprime;
void sieve(){
	for(int i=3; i<MAX; i++, i++) isprime[i]=1;
	isprime[2]=1;
	for(int i=3; i<MAX; i++){
		if(isprime[i]){
			for(int j=(i<<1); j<MAX; j+=i) isprime[j]=0;
		}
	}
}
ll x[MAX];
bitset<MAX> sqf;
const ll MAXD=1000000;
const ll MAXR=1000000000000000000ll;
int main(int argc, char* argv[]){
    registerValidation(argc, argv);
    ll l=inf.readLong(1ll, MAXR);
    inf.readSpace();
    ll r=inf.readLong(1ll, MAXR);
    ensure(l<=r && r-l<=MAXD);
    inf.readEoln();
    inf.readEof();
    
    sieve();
	for(ll i=l; i<=r; i++){
		x[i-l]=i;
		sqf[i-l]=1;
	}
	for(ll p=2; p<MAX; p++){
		if(!isprime[p]) continue;
		for(ll i=(l+p-1)/p*p; i<=r; i+=p){
			int e=0;
			while(x[i-l]%p==0){
				x[i-l]/=p;
				e++;
			}
			if(e>1) sqf[i-l]=0;
		}
	}
	int ans=0;
	for(ll i=l; i<=r; i++){
		if(!sqf[i-l]) continue;
        if(x[i-l]==1){
            ans++;
            continue;
        }
		ll xl=1, xr=1e9+7;
		while(xr-xl>1){
			ll xm=(xl+xr)/2;
			if(xm*xm<=x[i-l]) xl=xm;
			else xr=xm;
		}
		if(xl*xl!=x[i-l]) ans++;
	}
	cout<<ans<<endl;
    return 0;
}
0