結果

問題 No.1653 Squarefree
ユーザー snrnsidysnrnsidy
提出日時 2021-09-02 11:25:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 806 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 203,664 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 04:11:54
合計ジャッジ時間 7,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,632 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,504 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,504 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

bool isprime[1000001];
vector <long long int> prime;
bool check[1000001];
int main(void)
{
	long long int a,b;
	int count = 0;
	//cin.tie(0);
	//ios::sync_with_stdio(false);

	cin >> a >> b;
	
	memset(isprime,true,sizeof(isprime));
	memset(check,false,sizeof(check));
	for(long long int i=2;i<=(long long int)sqrt(b);i++)
	{
		if(isprime[i])
		{
			prime.push_back(i);
			for(long long int j=2*i;j<=(long long int)sqrt(b);j+=i)
			{
				isprime[j]=false;
			}
		}
	}

	for(int i=0;i<prime.size();i++)
	{
		long long int x = prime[i]*prime[i];
		long long int l = ceil((a-1)/x+1)*x;
		for(long long int j=l;j<=b;j+=x)
		{
			if(check[(int)(j-a)]==false)
			{
				check[(int)(j-a)]=true;
				count++;
			}
		}
	}

	cout << (b-a+1) - count << '\n';
	return 0;
}
0