結果

問題 No.1653 Squarefree
ユーザー kotatsugamekotatsugame
提出日時 2021-08-24 20:23:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 65,324 KB
実行使用メモリ 13,516 KB
最終ジャッジ日時 2024-04-27 08:23:43
合計ジャッジ時間 9,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
13,260 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 190 ms
13,516 KB
testcase_12 AC 181 ms
13,388 KB
testcase_13 AC 282 ms
13,132 KB
testcase_14 AC 284 ms
13,260 KB
testcase_15 AC 283 ms
13,384 KB
testcase_16 AC 293 ms
13,256 KB
testcase_17 AC 298 ms
13,392 KB
testcase_18 AC 312 ms
13,392 KB
testcase_19 AC 290 ms
13,260 KB
testcase_20 AC 291 ms
13,392 KB
testcase_21 AC 281 ms
13,260 KB
testcase_22 AC 291 ms
13,388 KB
testcase_23 AC 275 ms
13,136 KB
testcase_24 AC 272 ms
13,264 KB
testcase_25 AC 287 ms
13,128 KB
testcase_26 AC 270 ms
13,260 KB
testcase_27 AC 295 ms
13,128 KB
testcase_28 AC 307 ms
13,256 KB
testcase_29 AC 283 ms
13,260 KB
testcase_30 AC 275 ms
13,384 KB
testcase_31 AC 270 ms
13,260 KB
testcase_32 AC 280 ms
13,264 KB
testcase_33 AC 277 ms
13,264 KB
testcase_34 AC 283 ms
13,256 KB
testcase_35 AC 291 ms
13,264 KB
testcase_36 AC 8 ms
6,944 KB
testcase_37 AC 9 ms
6,944 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 8 ms
6,940 KB
testcase_40 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:18:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   18 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long L,R;
long A[1<<20];
bool sq[1<<20];
bool isp[1<<20];
bool issq(long X)
{
	long L=1,R=1e9+1;
	while(R-L>1)
	{
		long mid=(L+R)/2;
		if(mid*mid>X)R=mid;
		else L=mid;
	}
	return L*L==X;
}
main()
{
	cin>>L>>R;
	for(int i=0;i<=R-L;i++)A[i]=L+i;
	for(int i=2;i<1<<20;i++)if(!isp[i])
	{
		for(int j=i+i;j<1<<20;j+=i)isp[j]=true;
		long x=(L+i-1)/i*i;
		while(x<=R)
		{
			int id=x-L;
			int cnt=0;
			while(A[id]%i==0)A[id]/=i,cnt++;
			if(cnt>=2)sq[id]=true;
			x+=i;
		}
	}
	int cnt=0;
	for(int i=0;i<=R-L;i++)
	{
		if(A[i]>1&&issq(A[i]))sq[i]=true;
		if(!sq[i])cnt++;
	}
	cout<<cnt<<endl;
}
0