結果
問題 | No.811 約数の個数の最大化 |
ユーザー | HIcoder |
提出日時 | 2023-07-04 22:21:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,827 bytes |
コンパイル時間 | 816 ms |
コンパイル使用メモリ | 86,812 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 17:26:59 |
合計ジャッジ時間 | 1,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 73 ms
5,376 KB |
testcase_14 | AC | 6 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:60:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 60 | for(auto [v,num]:primenum){ | ^
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=1e9+7; vector<pair<ll,ll>> primediv(ll n){ vector<pair<ll,ll>> res; for(ll p=2;p*p<=n;p++){ if(n%p==0){ pair<ll,ll> tmp; tmp.first=p,tmp.second=0; while(n%p==0){ n/=p; tmp.second++; } res.push_back(tmp); } } if(n>1){ res.emplace_back(n,1); } return res; } int main(){ int N,K; cin>>N>>K; auto primenum=primediv(N); ll maxnum=0;//約数の個数のmax ll ans=0; for(int i=1;i<N;i++){ //cout<<"i="<<i<<endl; ll cntnum=1; ll k=0; ll tmpi=i; for(auto [v,num]:primenum){ if(tmpi%v==0){ ll t=0; while(tmpi%v==0){ t++; tmpi/=v; } k+=min(t,num); } } if(k>=K){ ll candnum=1; ll cand=i; for(ll d=2;d*d<=i;d++){ if(cand%d==0){ ll t=0; while(cand%d==0){ t++; cand/=d; } candnum*=(t+1); } } if(maxnum<candnum){ ans=i; maxnum=candnum; } //cout<<"ans="<<ans<<endl; //cout<<"maxnum="<<maxnum<<endl; } } cout<<ans<<endl; }