結果

問題 No.2829 GCD Divination
ユーザー Nzt3Nzt3
提出日時 2024-08-02 23:15:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 665 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 201,724 KB
実行使用メモリ 166,328 KB
最終ジャッジ日時 2024-09-22 02:25:16
合計ジャッジ時間 9,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 TLE -
testcase_03 AC 2 ms
5,376 KB
testcase_04 TLE -
testcase_05 AC 1,813 ms
138,624 KB
testcase_06 AC 1,412 ms
116,096 KB
testcase_07 AC 1,235 ms
104,832 KB
testcase_08 AC 672 ms
70,784 KB
testcase_09 AC 486 ms
59,904 KB
testcase_10 AC 995 ms
90,752 KB
testcase_11 AC 13 ms
7,296 KB
testcase_12 AC 176 ms
31,360 KB
testcase_13 AC 1,868 ms
142,976 KB
testcase_14 AC 1,108 ms
97,408 KB
testcase_15 AC 642 ms
70,784 KB
testcase_16 AC 195 ms
35,072 KB
testcase_17 AC 82 ms
20,480 KB
testcase_18 AC 47 ms
16,000 KB
testcase_19 AC 123 ms
25,600 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 504 ms
60,288 KB
testcase_22 AC 665 ms
71,552 KB
testcase_23 AC 862 ms
84,608 KB
testcase_24 AC 1,602 ms
126,208 KB
testcase_25 TLE -
testcase_26 AC 645 ms
67,072 KB
testcase_27 AC 1,341 ms
115,456 KB
testcase_28 AC 130 ms
26,624 KB
testcase_29 AC 661 ms
72,064 KB
testcase_30 AC 1,936 ms
148,736 KB
testcase_31 AC 88 ms
20,608 KB
testcase_32 AC 980 ms
88,320 KB
testcase_33 AC 582 ms
64,640 KB
testcase_34 AC 1,337 ms
115,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector phi(N+1,0.0);
  for(int i=0;i<=N;i++)phi[i]=i;
  for(int i=2;i<=N;i++){
    if(phi[i]!=i)continue;
    for(int j=i;j<=N;j+=i){
      phi[j]=phi[j]/i*(i-1);
    }
  }

  vector dp(N+1,0.0);
  for(int i=1;i<=N;i++){
    if(i>1)dp[i]=(1+dp[i]*i)/(double)(i-1);
    for(int j=2;j*i<=N;j++){
      dp[j*i]+=phi[j]*(dp[i]+1)/((double)j*i);
    }
  }
  cout<<setprecision(10)<<dp[N]<<'\n';
}
0