結果

問題 No.2829 GCD Divination
ユーザー 沙耶花沙耶花
提出日時 2024-08-02 21:44:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,044 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 4,140 ms
コンパイル使用メモリ 265,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-02 21:44:38
合計ジャッジ時間 21,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1,044 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1,000 ms
6,944 KB
testcase_05 AC 972 ms
6,940 KB
testcase_06 AC 812 ms
6,944 KB
testcase_07 AC 719 ms
6,944 KB
testcase_08 AC 463 ms
6,940 KB
testcase_09 AC 389 ms
6,940 KB
testcase_10 AC 578 ms
6,944 KB
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 168 ms
6,944 KB
testcase_13 AC 884 ms
6,940 KB
testcase_14 AC 596 ms
6,944 KB
testcase_15 AC 457 ms
6,944 KB
testcase_16 AC 192 ms
6,940 KB
testcase_17 AC 106 ms
6,944 KB
testcase_18 AC 73 ms
6,940 KB
testcase_19 AC 136 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 349 ms
6,940 KB
testcase_22 AC 407 ms
6,944 KB
testcase_23 AC 420 ms
6,944 KB
testcase_24 AC 785 ms
6,944 KB
testcase_25 AC 959 ms
6,944 KB
testcase_26 AC 396 ms
6,944 KB
testcase_27 AC 711 ms
6,944 KB
testcase_28 AC 136 ms
6,944 KB
testcase_29 AC 423 ms
6,940 KB
testcase_30 AC 961 ms
6,944 KB
testcase_31 AC 100 ms
6,940 KB
testcase_32 AC 518 ms
6,940 KB
testcase_33 AC 374 ms
6,944 KB
testcase_34 AC 732 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
	
	long long n;
	cin>>n;
	vector<long long> y;
	for(long long i=1;i<=n;i++){
		if(n%i==0)y.push_back(i);
	}
	
	vector<long long> c(y.size());
	for(long long i=1;i<=n;i++){
		int g =gcd(i,n);
		c[lower_bound(y.begin(),y.end(),g)-y.begin()]++;
	}
	vector<double> dp(y.size(),0);
	for(int i=1;i<y.size();i++){
		double loop = 0.0;
		rep(j,y.size()){
			int g = gcd(y[i],y[j]);
			if(g==y[i])loop += c[j];
			
		}
		dp[i] += (double)n/(n-loop);
		rep(j,y.size()){
			int g = gcd(y[i],y[j]);
			g = distance(y.begin(),lower_bound(y.begin(),y.end(),g));
			if(g!=i)dp[i] += dp[g] * c[j]/(n-loop);
			
		}
	}
	cout<<fixed<<setprecision(10)<<dp[y.size()-1]<<endl;
		
    return 0;
}
0