結果
| 問題 |
No.811 約数の個数の最大化
|
| コンテスト | |
| ユーザー |
tekihei2317
|
| 提出日時 | 2019-04-12 21:57:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 907 bytes |
| コンパイル時間 | 1,649 ms |
| コンパイル使用メモリ | 176,092 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-14 18:29:47 |
| 合計ジャッジ時間 | 2,868 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 12 |
ソースコード
#include<bits/stdc++.h>
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) (v).begin(),(v).end()
#define SZ(x) ((int)(x).size())
#define int long long
using namespace std;
typedef vector<int> vint;
typedef pair<int,int> pint;
signed main()
{
int N,K; cin>>N>>K;
int _N=N;
map<int,int> cnt;
for(int i=2;i*i<=_N;i++){
while(_N%i==0){
cnt[i]++;
_N/=i;
}
}
if(_N!=1) cnt[_N]=1;
for(pint p:cnt) cout<<p.first<<' '<<p.second<<endl;
int ans1=-1,ans2=0; //約数の個数の最大値と、それを与える数
for(int i=2;i<N;i++){
int tmp=i;
map<int,int> c;
for(int j=2;j*j<=tmp;j++){
while(tmp%j==0){
c[j]++;
tmp/=j;
}
}
if(tmp!=1) c[tmp]=1;
int x=0,y=1;
for(pint p:cnt){
x+=min(p.second,c[p.first]);
}
for(pint p:c){
y*=(p.second+1);
}
if(x>=K and y>ans1){
ans1=y;
ans2=i;
}
}
cout<<ans2<<endl;
}
tekihei2317