結果

問題 No.2829 GCD Divination
ユーザー cho435cho435
提出日時 2024-08-03 01:17:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 708 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 212,076 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-08-03 01:18:30
合計ジャッジ時間 31,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
81,732 KB
testcase_01 AC 22 ms
81,460 KB
testcase_02 AC 943 ms
81,524 KB
testcase_03 AC 22 ms
81,792 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,390 ms
81,560 KB
testcase_09 AC 1,159 ms
81,456 KB
testcase_10 AC 795 ms
81,788 KB
testcase_11 AC 39 ms
81,576 KB
testcase_12 AC 271 ms
81,664 KB
testcase_13 AC 968 ms
81,792 KB
testcase_14 AC 695 ms
81,664 KB
testcase_15 AC 846 ms
81,564 KB
testcase_16 AC 291 ms
81,456 KB
testcase_17 AC 169 ms
81,664 KB
testcase_18 AC 155 ms
81,664 KB
testcase_19 AC 218 ms
81,664 KB
testcase_20 AC 22 ms
81,572 KB
testcase_21 AC 846 ms
81,580 KB
testcase_22 AC 436 ms
81,568 KB
testcase_23 AC 850 ms
81,528 KB
testcase_24 AC 941 ms
81,516 KB
testcase_25 AC 997 ms
81,748 KB
testcase_26 AC 456 ms
81,524 KB
testcase_27 AC 1,265 ms
81,624 KB
testcase_28 AC 176 ms
81,516 KB
testcase_29 AC 790 ms
81,564 KB
testcase_30 AC 1,327 ms
81,568 KB
testcase_31 AC 123 ms
81,536 KB
testcase_32 AC 600 ms
81,664 KB
testcase_33 AC 470 ms
81,664 KB
testcase_34 AC 1,188 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

vector<double> mm(1e7+1);
double dfs(int x){
	if(x==1) return 0;
	if(mm[x]!=0) return mm[x];
	double res=x;
	for(int i=1;i<x;i++){
		res+=dfs(gcd(x,i));
	}
	res/=x-1;
	return mm[x]=res;
}

int main(){
	int n;
	cin>>n;	
	cout<<dfs(n)<<"\n";
}
0