結果

問題 No.1653 Squarefree
ユーザー SSRSSSRS
提出日時 2021-08-20 23:09:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 168,524 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 08:33:53
合計ジャッジ時間 4,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  long long L, R;
  cin >> L >> R;
  vector<bool> ok(R - L + 1, true);
  for (long long i = 2; i <= 2000000; i++){
    long long m = i * i;
    for (long long j = (L + m - 1) / m * m; j <= R; j += m){
      ok[j - L] = false;
    }
  }
  for (int j = 1; j <= 2000000; j++){
    long long a = sqrt(L / j);
    while (true){
      if (a * a * j > R){
        break;
      }
      if (a >= 2 && a * a * j >= L){
        ok[a * a * j - L] = false;
      }
      a++;
    }
  }
  int ans = 0;
  for (int i = 0; i <= R - L; i++){
    if (ok[i]){
      ans++;
    }
  }
  cout << ans << endl;
}
0