結果

問題 No.1653 Squarefree
ユーザー monnumonnu
提出日時 2021-08-29 02:18:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 229,792 KB
実行使用メモリ 15,136 KB
最終ジャッジ日時 2024-05-01 19:31:46
合計ジャッジ時間 29,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 816 ms
15,032 KB
testcase_01 AC 201 ms
6,816 KB
testcase_02 AC 202 ms
6,944 KB
testcase_03 AC 200 ms
6,944 KB
testcase_04 AC 202 ms
6,944 KB
testcase_05 AC 201 ms
6,940 KB
testcase_06 AC 201 ms
6,944 KB
testcase_07 AC 201 ms
6,940 KB
testcase_08 AC 202 ms
6,940 KB
testcase_09 AC 202 ms
6,940 KB
testcase_10 AC 201 ms
6,940 KB
testcase_11 AC 550 ms
15,016 KB
testcase_12 AC 547 ms
14,976 KB
testcase_13 AC 805 ms
14,848 KB
testcase_14 AC 802 ms
14,984 KB
testcase_15 AC 809 ms
15,024 KB
testcase_16 AC 813 ms
14,948 KB
testcase_17 AC 812 ms
14,828 KB
testcase_18 AC 803 ms
14,876 KB
testcase_19 AC 806 ms
14,824 KB
testcase_20 AC 830 ms
15,004 KB
testcase_21 AC 813 ms
14,916 KB
testcase_22 AC 817 ms
14,976 KB
testcase_23 AC 782 ms
14,848 KB
testcase_24 AC 786 ms
14,916 KB
testcase_25 AC 810 ms
15,136 KB
testcase_26 AC 797 ms
14,956 KB
testcase_27 AC 801 ms
14,980 KB
testcase_28 AC 810 ms
14,984 KB
testcase_29 AC 821 ms
15,020 KB
testcase_30 AC 816 ms
14,900 KB
testcase_31 AC 804 ms
15,000 KB
testcase_32 AC 812 ms
15,012 KB
testcase_33 AC 788 ms
14,944 KB
testcase_34 AC 802 ms
15,048 KB
testcase_35 AC 803 ms
14,960 KB
testcase_36 AC 201 ms
6,940 KB
testcase_37 AC 201 ms
6,944 KB
testcase_38 AC 202 ms
6,940 KB
testcase_39 AC 203 ms
6,948 KB
testcase_40 AC 202 ms
6,940 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