結果
問題 | No.1653 Squarefree |
ユーザー | monnu |
提出日時 | 2021-08-29 02:16:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 894 bytes |
コンパイル時間 | 3,674 ms |
コンパイル使用メモリ | 230,716 KB |
実行使用メモリ | 15,088 KB |
最終ジャッジ日時 | 2024-11-22 01:39:53 |
合計ジャッジ時間 | 16,253 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 422 ms
14,928 KB |
testcase_01 | AC | 4 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,820 KB |
testcase_03 | AC | 4 ms
6,820 KB |
testcase_04 | AC | 4 ms
6,816 KB |
testcase_05 | AC | 4 ms
6,816 KB |
testcase_06 | AC | 4 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | AC | 4 ms
6,820 KB |
testcase_09 | AC | 4 ms
6,820 KB |
testcase_10 | AC | 4 ms
6,820 KB |
testcase_11 | AC | 314 ms
15,012 KB |
testcase_12 | AC | 314 ms
14,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 411 ms
14,916 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 420 ms
14,984 KB |
testcase_19 | AC | 425 ms
14,964 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 422 ms
14,820 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 411 ms
14,860 KB |
testcase_27 | AC | 416 ms
14,928 KB |
testcase_28 | AC | 428 ms
14,968 KB |
testcase_29 | AC | 423 ms
15,056 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 4 ms
6,816 KB |
testcase_37 | AC | 4 ms
6,816 KB |
testcase_38 | AC | 4 ms
6,820 KB |
testcase_39 | AC | 4 ms
6,816 KB |
testcase_40 | AC | 4 ms
6,816 KB |
ソースコード
#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<=100000;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'; }