結果
問題 | No.811 約数の個数の最大化 |
ユーザー | hiroa |
提出日時 | 2019-05-03 09:00:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 109 ms / 2,000 ms |
コード長 | 714 bytes |
コンパイル時間 | 1,418 ms |
コンパイル使用メモリ | 173,388 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-06-10 05:30:14 |
合計ジャッジ時間 | 2,575 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 94 ms
12,160 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 7 ms
6,940 KB |
testcase_07 | AC | 10 ms
6,940 KB |
testcase_08 | AC | 42 ms
7,936 KB |
testcase_09 | AC | 47 ms
8,192 KB |
testcase_10 | AC | 29 ms
6,944 KB |
testcase_11 | AC | 95 ms
12,160 KB |
testcase_12 | AC | 23 ms
6,944 KB |
testcase_13 | AC | 109 ms
13,184 KB |
testcase_14 | AC | 108 ms
13,056 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; #define MOD 1000000007 #define INF 1e9 int main(){ int N,K; cin>>N>>K; vector<vector<int>> fact(N); vector<int> num(N,1); for(int i=1;i<N;i++){ for(int j=1;j*j<=i;j++){ if(i%j) continue; fact[i].push_back(j); if(j*j!=i) fact[i].push_back(i/j); } } num[1]=0; for(int i=2;i*i<N;i++){ if(num[i]!=1) continue; for(int j=2;i*j<N;j++) num[i*j]=num[i]+num[j]; } int max=0,res=0; for(int i=1;i<N;i++){ if(num[__gcd(i,N)]>=K && fact[i].size()>max){ res=i,max=fact[i].size(); } } cout<<res<<endl; }