結果
問題 | No.811 約数の個数の最大化 |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-22 15:32:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 702 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 208,180 KB |
実行使用メモリ | 20,736 KB |
最終ジャッジ日時 | 2024-10-12 12:24:21 |
合計ジャッジ時間 | 3,348 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 64 ms
18,944 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 6 ms
5,248 KB |
testcase_07 | AC | 8 ms
5,632 KB |
testcase_08 | AC | 32 ms
11,520 KB |
testcase_09 | AC | 35 ms
12,032 KB |
testcase_10 | AC | 22 ms
9,216 KB |
testcase_11 | AC | 62 ms
18,944 KB |
testcase_12 | AC | 18 ms
8,064 KB |
testcase_13 | AC | 72 ms
20,736 KB |
testcase_14 | AC | 72 ms
20,552 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n,k; cin>>n>>k; map<int,int> pf[n+1]; for (int i=1;i<=n;i++) { int t=i; for (int j=2;j*j<=t;j++) while (t%j==0) { pf[i][j]++; t/=j; } if (t>1) pf[i][t]++; } int ans=0; int mx=0; for (int i=1;i<n;i++) { int g=gcd(i,n); int sum=0; for (auto p:pf[g]) sum+=p.second; if (sum<k) continue; int div=1; for (auto p:pf[i]) div*=p.second+1; if (div>mx) { ans=i; mx=div; } } cout<<ans<<endl; return 0; }