結果
問題 | No.1006 Share an Integer |
ユーザー | sugarrr |
提出日時 | 2020-03-06 21:32:36 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,285 bytes |
コンパイル時間 | 2,022 ms |
コンパイル使用メモリ | 166,488 KB |
実行使用メモリ | 62,324 KB |
最終ジャッジ日時 | 2024-11-30 16:40:25 |
合計ジャッジ時間 | 25,497 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
//#include <bits/stdc++.h> #include "bits/stdc++.h" using namespace std; typedef long long ll; //#include "boost/multiprecision/cpp_int.hpp" //typedef boost::multiprecision::cpp_int ll; typedef long double dd; #define i_7 (ll)(1E9+7) //#define i_7 998244353 #define i_5 i_7-2 ll mod(ll a){ ll c=a%i_7; if(c>=0)return c; return c+i_7; } typedef pair<ll,ll> l_l; typedef pair<dd,dd> d_d; ll inf=(ll)1E16; #define rep(i,l,r) for(ll i=l;i<=r;i++) #define pb push_back ll max(ll a,ll b){if(a<b)return b;else return a;} ll min(ll a,ll b){if(a>b)return b;else return a;} void Max(ll &pos,ll val){pos=max(pos,val);}//Max(dp[n],dp[n-1]); void Min(ll &pos,ll val){pos=min(pos,val);} void Add(ll &pos,ll val){pos=mod(pos+val);} dd EPS=1E-9; #define fastio ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); #define fi first #define se second /////////////////////////// #define N 200002 ll f[N]; #define MAX_N (ll)2E7///変更!!!!!!! vector<ll>prime; bool is_prime[MAX_N+1]; void precal(){ rep(i,0,MAX_N)is_prime[i]=true; is_prime[0]=is_prime[1]=false; rep(i,2,MAX_N){ if(is_prime[i]){ prime.pb(i); for(ll j=2*i;j<=MAX_N;j+=i)is_prime[j]=false; } } } ll fact(ll n){ vector<l_l>v; for(ll p:prime){ if(p*p>n)break; ll c=0; while(n%p==0){ n/=p; c++; } if(c)v.pb(l_l(p,c));//pという素因数がc個入っている } if(n!=1){ ll vsize=v.size(); if(vsize>=1&&v[vsize-1].first==n)v[vsize-1].second++; else v.pb(l_l(n,1)); } /* if(v.size()==0){ v.pb(l_l(1,1)); }*/ //return v; ll res=1; for(auto x:v){ res*=x.second+1; } return res; } ///////////////////////////////////////////////////// void calc(){ precal(); f[1]=0; rep(i,2,N){ f[i]=i-fact(i); } } int main(){fastio calc(); ll x;cin>>x; //rep(i,1,10)cout<<f[i]<<endl; ll dis[x]; ll mini=inf; rep(i,1,x-1){ ll a=i,b=x-i; dis[i]=abs(f[a]-f[b]); Min(mini,dis[i]); } vector<ll>ans; rep(i,1,x-1){ if(mini==dis[i])ans.pb(i); } for(auto y:ans){ cout<<y<<" "<<x-y<<endl; } return 0; }