結果

問題 No.1653 Squarefree
ユーザー monnumonnu
提出日時 2021-08-29 02:18:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 3,895 ms
コンパイル使用メモリ 230,028 KB
実行使用メモリ 15,092 KB
最終ジャッジ日時 2024-11-22 01:41:45
合計ジャッジ時間 28,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 768 ms
14,960 KB
testcase_01 AC 197 ms
6,816 KB
testcase_02 AC 202 ms
6,820 KB
testcase_03 AC 200 ms
6,820 KB
testcase_04 AC 193 ms
6,816 KB
testcase_05 AC 199 ms
6,820 KB
testcase_06 AC 198 ms
6,816 KB
testcase_07 AC 195 ms
6,816 KB
testcase_08 AC 194 ms
6,816 KB
testcase_09 AC 194 ms
6,816 KB
testcase_10 AC 190 ms
6,816 KB
testcase_11 AC 542 ms
14,932 KB
testcase_12 AC 529 ms
14,916 KB
testcase_13 AC 757 ms
14,908 KB
testcase_14 AC 754 ms
14,776 KB
testcase_15 AC 766 ms
14,896 KB
testcase_16 AC 760 ms
14,928 KB
testcase_17 AC 755 ms
14,996 KB
testcase_18 AC 774 ms
14,916 KB
testcase_19 AC 776 ms
14,812 KB
testcase_20 AC 761 ms
15,064 KB
testcase_21 AC 777 ms
14,904 KB
testcase_22 AC 765 ms
15,024 KB
testcase_23 AC 803 ms
14,780 KB
testcase_24 AC 806 ms
14,816 KB
testcase_25 AC 777 ms
14,968 KB
testcase_26 AC 755 ms
14,980 KB
testcase_27 AC 759 ms
15,092 KB
testcase_28 AC 751 ms
15,024 KB
testcase_29 AC 756 ms
14,880 KB
testcase_30 AC 750 ms
14,764 KB
testcase_31 AC 759 ms
14,860 KB
testcase_32 AC 761 ms
14,972 KB
testcase_33 AC 753 ms
14,832 KB
testcase_34 AC 753 ms
14,900 KB
testcase_35 AC 744 ms
14,892 KB
testcase_36 AC 201 ms
6,816 KB
testcase_37 AC 199 ms
6,816 KB
testcase_38 AC 198 ms
6,816 KB
testcase_39 AC 198 ms
6,816 KB
testcase_40 AC 199 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 2000000
#define MOD 1000000007
#define INF 1000000000

int main(){
  ll L,R;
  cin>>L>>R;
  vector<int> cnt(R-L+1,1);
  vector<ll> A(R-L+1);
  for(ll i=L;i<=R;i++){
    A[i-L]=i;
  }
  for(ll i=2;i<=10000000;i++){
    ll x=i*i;
    for(ll j=((L-1)/x+1)*x;j<=R;j+=x){
      cnt[j-L]=0;
    }
    for(ll j=((L-1)/i+1)*i;j<=R;j+=i){
      while(A[j-L]%i==0){
        A[j-L]/=i;
      }
    }
  }
  for(ll i=L;i<=R;i++){
    ll left=0;
    ll right=1000000001;
    while(left+1<right){
      ll x=(left+right)/2;
      if(x*x<=A[i-L]){
        left=x;
      }else{
        right=x;
      }
    }
    if(left*left==A[i-L]&&left>1){
      cnt[i-L]=0;
    }
  }

  int ans=0;
  for(ll i=L;i<=R;i++){
    ans+=cnt[i-L];
  }
  cout<<ans<<'\n';
}
0