結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | chocorusk |
提出日時 | 2018-09-28 23:52:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,390 bytes |
コンパイル時間 | 752 ms |
コンパイル使用メモリ | 94,244 KB |
実行使用メモリ | 387,104 KB |
最終ジャッジ日時 | 2024-10-12 07:31:53 |
合計ジャッジ時間 | 11,596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 152 ms
166,688 KB |
testcase_01 | AC | 152 ms
160,000 KB |
testcase_02 | AC | 150 ms
159,872 KB |
testcase_03 | AC | 152 ms
160,000 KB |
testcase_04 | AC | 152 ms
159,872 KB |
testcase_05 | AC | 154 ms
160,000 KB |
testcase_06 | AC | 151 ms
159,872 KB |
testcase_07 | AC | 150 ms
159,872 KB |
testcase_08 | AC | 151 ms
160,000 KB |
testcase_09 | AC | 150 ms
159,872 KB |
testcase_10 | AC | 153 ms
160,000 KB |
testcase_11 | AC | 152 ms
159,872 KB |
testcase_12 | AC | 151 ms
159,744 KB |
testcase_13 | AC | 151 ms
159,872 KB |
testcase_14 | AC | 151 ms
160,128 KB |
testcase_15 | AC | 153 ms
160,000 KB |
testcase_16 | AC | 153 ms
160,000 KB |
testcase_17 | AC | 154 ms
159,872 KB |
testcase_18 | AC | 151 ms
160,000 KB |
testcase_19 | AC | 151 ms
159,872 KB |
testcase_20 | AC | 154 ms
160,128 KB |
testcase_21 | AC | 150 ms
159,872 KB |
testcase_22 | AC | 590 ms
204,160 KB |
testcase_23 | AC | 150 ms
159,872 KB |
testcase_24 | AC | 671 ms
212,736 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 150 ms
160,000 KB |
testcase_27 | AC | 150 ms
160,000 KB |
testcase_28 | AC | 156 ms
159,872 KB |
testcase_29 | AC | 370 ms
184,064 KB |
testcase_30 | TLE | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> using namespace std; typedef long long int ll; typedef pair<ll, int> P; const ll MAX=100001; vector<ll> prime; bool isprime[MAX]; void sieve(){ for(ll i=3; i<MAX; i+=2){ isprime[i]=1; } isprime[2]=1; prime.push_back(2); for(ll i=3; i<MAX; i++){ if(isprime[i]){ prime.push_back(i); for(ll j=2*i; j<MAX; j+=i){ isprime[j]=0; } } } return; } int main() { ll l, h; cin>>l>>h; sieve(); int i1=0, i2=prime.size()-1; while(i1!=i2){ int i0=(i1+i2+1)/2; if(prime[i0]*prime[i0]<=h){ i1=i0; }else{ i2=i0-1; } } if(l<=prime[i1]*prime[i1]) l=prime[i1]*prime[i1]; vector<P> fac[5000000]; ll x[5000000]; for(ll i=l; i<=h; i++) x[i-l]=i; for(auto p:prime){ ll x0=(l+p-1)/p*p; for(ll x1=x0; x1<=h; x1+=p){ int e=0; while(x[x1-l]%p==0){ x[x1-l]/=p; e++; } fac[x1-l].push_back(P(p, e)); } } for(ll i=l; i<=h; i++){ if(x[i-l]>1) fac[i-l].push_back(P(x[i-l], 1)); } ll mx=0, ans; for(ll i=h; i>=l; i--){ if(fac[i-l].size()==1 && fac[i-l][0].second==1) continue; if(fac[i-l][0].first>mx){ mx=fac[i-l][0].first; ans=i; } } cout<<ans<<endl; return 0; }