結果
| 問題 |
No.811 約数の個数の最大化
|
| コンテスト | |
| ユーザー |
tekihei2317
|
| 提出日時 | 2019-04-12 22:00:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 106 ms / 2,000 ms |
| コード長 | 851 bytes |
| コンパイル時間 | 1,664 ms |
| コンパイル使用メモリ | 174,860 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 18:39:06 |
| 合計ジャッジ時間 | 2,874 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 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;
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