結果

問題 No.1653 Squarefree
ユーザー mugen_1337mugen_1337
提出日時 2021-12-02 16:01:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,653 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 205,108 KB
実行使用メモリ 22,012 KB
最終ジャッジ日時 2023-09-18 10:20:49
合計ジャッジ時間 8,562 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 2 ms
4,376 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:55:8: 警告: ‘T’ may be used uninitialized [-Wmaybe-uninitialized]
   55 |     ll T;
      |        ^
main.cpp:64:17: 警告: ‘S’ may be used uninitialized [-Wmaybe-uninitialized]
   64 |     for(ll t=S;t<=T;t++) ban.insert(t*t);
      |                ~^~~
main.cpp:46:8: 備考: ‘S’ はここで定義されています
   46 |     ll S;
      |        ^

ソースコード

diff #

#include"bits/stdc++.h"
using namespace std;
#define ALL(x) begin(x),end(x)
#define rep(i,n) for(int i=0;i<(n);i++)
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define mod 1000000007
using ll=long long;
const int INF=1000000000;
const ll LINF=1001002003004005006ll;
int dx[]={1,0,-1,0},dy[]={0,1,0,-1};
// ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;}

struct IOSetup{
    IOSetup(){
        cin.tie(0);
        ios::sync_with_stdio(0);
        cout<<fixed<<setprecision(12);
    }
} iosetup;
 
template<typename T>
ostream &operator<<(ostream &os,const vector<T>&v){
    for(int i=0;i<(int)v.size();i++) os<<v[i]<<(i+1==(int)v.size()?"":" ");
    return os;
}
template<typename T>
istream &operator>>(istream &is,vector<T>&v){
    for(T &x:v)is>>x;
    return is;
}

signed main(){
    ll L,R;cin>>L>>R;R++;

    ll W=R-L;
    set<ll> ban;
    for(ll i=2;i*i<=W+1029418;i++){
        ll p=i*i;

        ll st=((p+L-1)/p)*p;
        for(ll t=st;t<R;t+=p) ban.insert(t);
    }

    ll S;
    {
        ll lw=1,hi=1000000000;
        while(lw<=hi){
            ll mid=(lw+hi)/2;
            if(L<=mid*mid) S=mid,hi=mid-1;
            else           lw=mid+1;
        }
    }
    ll T;
    {
        ll lw=1,hi=1000000000;
        while(lw<=hi){
            ll mid=(lw+hi)/2;
            if(mid*mid<=R) T=mid,lw=mid+1;
            else           hi=mid-1;
        }
    }
    for(ll t=S;t<=T;t++) ban.insert(t*t);
    cout<<W-(ll)ban.size()<<endl;
    return 0;
}
0