結果
問題 | No.811 約数の個数の最大化 |
ユーザー | Shuz* |
提出日時 | 2018-06-21 12:43:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 1,560 ms |
コンパイル使用メモリ | 158,052 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 21:25:46 |
合計ジャッジ時間 | 3,638 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 104 ms
5,376 KB |
testcase_03 | AC | 95 ms
5,376 KB |
testcase_04 | AC | 96 ms
5,376 KB |
testcase_05 | AC | 95 ms
5,376 KB |
testcase_06 | AC | 97 ms
5,376 KB |
testcase_07 | AC | 97 ms
5,376 KB |
testcase_08 | AC | 100 ms
5,376 KB |
testcase_09 | AC | 101 ms
5,376 KB |
testcase_10 | AC | 98 ms
5,376 KB |
testcase_11 | AC | 106 ms
5,376 KB |
testcase_12 | AC | 98 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 106 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:29:7: warning: ‘q’ may be used uninitialized in this function [-Wmaybe-uninitialized] 29 | cout<<q<<endl;} | ^
ソースコード
#include<bits/stdc++.h> using namespace std; int p[]= {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317}; int t=66,i,j; int s[100000],y[100000]={}; int gcd (int a, int b){ int c; while(a){c=a;a=b%a;b=c;} return b;} void a(){ for(i=0;i-t;++i)s[p[i]]=1; for(i=4;i-100000;++i)for(j=0;p[j]*p[j]<=i;++j){ if(i%p[j]==0){s[i]=s[i/p[j]]+s[p[j]];break;} if((p[j]+1)*(p[j]+1)>i)s[i]=1;}} void b(){ for(i=1;i-100000;++i)for(j=1;j*j<=i;++j){ if(j*j==i)++y[i];else if(i%j==0)y[i]+=2;}} int main(){ int n,k,m=0,q; cin>>n>>k; a();b(); for(i=2;i-n;++i)if(s[gcd(i,n)]==k&&y[i]>m){ m=y[i];q=i;} cout<<q<<endl;}