結果

問題 No.2645 Sum of Divisors?
ユーザー umezoumezo
提出日時 2024-02-22 03:25:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 855 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 252,788 KB
実行使用メモリ 105,124 KB
最終ジャッジ日時 2024-09-29 04:24:13
合計ジャッジ時間 8,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,244 KB
testcase_01 AC 5 ms
11,336 KB
testcase_02 AC 428 ms
64,000 KB
testcase_03 AC 6 ms
11,256 KB
testcase_04 AC 5 ms
11,316 KB
testcase_05 AC 4 ms
11,140 KB
testcase_06 AC 855 ms
105,032 KB
testcase_07 AC 798 ms
105,124 KB
testcase_08 AC 7 ms
11,240 KB
testcase_09 AC 5 ms
11,260 KB
testcase_10 AC 5 ms
11,180 KB
testcase_11 AC 6 ms
11,264 KB
testcase_12 AC 4 ms
11,260 KB
testcase_13 AC 5 ms
11,324 KB
testcase_14 AC 5 ms
11,152 KB
testcase_15 AC 5 ms
11,288 KB
testcase_16 AC 5 ms
11,308 KB
testcase_17 AC 6 ms
11,308 KB
testcase_18 AC 5 ms
11,652 KB
testcase_19 AC 5 ms
11,460 KB
testcase_20 AC 8 ms
12,252 KB
testcase_21 AC 7 ms
11,916 KB
testcase_22 AC 8 ms
12,632 KB
testcase_23 AC 17 ms
14,132 KB
testcase_24 AC 59 ms
20,732 KB
testcase_25 AC 40 ms
18,124 KB
testcase_26 AC 77 ms
23,304 KB
testcase_27 AC 102 ms
26,436 KB
testcase_28 AC 256 ms
45,180 KB
testcase_29 AC 771 ms
102,864 KB
testcase_30 AC 275 ms
47,728 KB
testcase_31 AC 450 ms
66,104 KB
testcase_32 AC 613 ms
85,516 KB
testcase_33 AC 305 ms
49,808 KB
testcase_34 AC 574 ms
80,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include<bits/stdc++.h>
using namespace std;

const double c=std::numbers::egamma;
double harmonic(ll k){
  double t=k;
  double ret=log(t)+c+0.5/t-1.0/12/t/t;
  return ret;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int k=1000000;
  vector<double> H(k+1);
  for(int i=1;i<=k;i++) H[i]=1.0/i+H[i-1];
  
  ll n;
  cin>>n;
  
  set<ll> s;
  for(ll i=1;i*i<=n;i++){
    s.insert(i);
    s.insert(n/i);
  }
  auto f=[&](ll d){
    if(d<=k) return H[d];
    return harmonic(d);
  };
  
  double ans=0;
  for(auto d:s) ans+=f(d)*(f(n/d)-f(n/(d+1)));
  printf("%.20f\n",ans);
    
  return 0;
}
0