結果

問題 No.2829 GCD Divination
ユーザー kotatsugamekotatsugame
提出日時 2024-08-02 21:35:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 615 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 86,848 KB
実行使用メモリ 61,848 KB
最終ジャッジ日時 2024-08-02 21:35:59
合計ジャッジ時間 14,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 116 ms
41,984 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 562 ms
61,848 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,755 ms
41,576 KB
testcase_08 AC 1,191 ms
28,820 KB
testcase_09 AC 935 ms
24,616 KB
testcase_10 AC 127 ms
35,948 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 54 ms
12,724 KB
testcase_13 AC 129 ms
43,008 KB
testcase_14 AC 110 ms
31,232 KB
testcase_15 AC 173 ms
28,448 KB
testcase_16 AC 49 ms
15,072 KB
testcase_17 AC 37 ms
8,936 KB
testcase_18 AC 33 ms
7,856 KB
testcase_19 AC 36 ms
10,668 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 200 ms
24,472 KB
testcase_22 AC 53 ms
20,224 KB
testcase_23 AC 297 ms
33,700 KB
testcase_24 AC 138 ms
40,092 KB
testcase_25 AC 132 ms
43,988 KB
testcase_26 AC 77 ms
21,364 KB
testcase_27 AC 247 ms
45,164 KB
testcase_28 AC 31 ms
10,140 KB
testcase_29 AC 138 ms
28,980 KB
testcase_30 AC 221 ms
51,664 KB
testcase_31 AC 18 ms
8,064 KB
testcase_32 AC 80 ms
27,392 KB
testcase_33 AC 103 ms
20,768 KB
testcase_34 AC 216 ms
45,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
#include<cassert>
#include<iomanip>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int t=a%b;
		a=b;
		b=t;
	}
	return a;
}
map<int,long double>memo;
long double solve(int N)
{
	if(N==1)return 0;
	if(memo.find(N)!=memo.end())return memo[N];
	vector<int>to(N,1);
	for(int g=2;g<N;g++)if(N%g==0)for(int i=g;i<N;i+=g)to[i]=g;
	long double ans=0;
	for(int i=1;i<N;i++)ans+=solve(to[i]);
	ans+=N;
	ans/=N-1;
	return memo[N]=ans;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;cin>>N;
	cout<<fixed<<setprecision(16)<<solve(N)<<endl;
}
0