結果

問題 No.2645 Sum of Divisors?
ユーザー pockynypockyny
提出日時 2024-02-25 05:38:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 79,096 KB
実行使用メモリ 19,660 KB
最終ジャッジ日時 2024-09-29 10:44:02
合計ジャッジ時間 2,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
19,164 KB
testcase_01 AC 10 ms
19,268 KB
testcase_02 AC 59 ms
19,576 KB
testcase_03 AC 10 ms
19,168 KB
testcase_04 AC 9 ms
19,164 KB
testcase_05 AC 9 ms
19,304 KB
testcase_06 AC 108 ms
19,288 KB
testcase_07 AC 107 ms
19,448 KB
testcase_08 AC 9 ms
19,352 KB
testcase_09 AC 9 ms
19,192 KB
testcase_10 AC 9 ms
19,300 KB
testcase_11 AC 9 ms
19,224 KB
testcase_12 AC 9 ms
19,328 KB
testcase_13 AC 9 ms
19,204 KB
testcase_14 AC 9 ms
19,216 KB
testcase_15 AC 9 ms
19,256 KB
testcase_16 AC 9 ms
19,344 KB
testcase_17 AC 10 ms
19,100 KB
testcase_18 AC 9 ms
19,504 KB
testcase_19 AC 9 ms
19,352 KB
testcase_20 AC 11 ms
19,412 KB
testcase_21 AC 10 ms
19,384 KB
testcase_22 AC 9 ms
19,420 KB
testcase_23 AC 11 ms
19,320 KB
testcase_24 AC 18 ms
19,460 KB
testcase_25 AC 15 ms
19,496 KB
testcase_26 AC 19 ms
19,476 KB
testcase_27 AC 24 ms
19,404 KB
testcase_28 AC 38 ms
19,632 KB
testcase_29 AC 104 ms
19,660 KB
testcase_30 AC 40 ms
19,344 KB
testcase_31 AC 60 ms
19,288 KB
testcase_32 AC 82 ms
19,396 KB
testcase_33 AC 43 ms
19,616 KB
testcase_34 AC 75 ms
19,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>

using namespace std;
typedef long long ll;
typedef long double ld;
ld h[1000010];
const ld eu = 0.5772156649;
ld H(ll n){
    if(n<=1000000) return h[n];
    return log(n) + eu + (ld)1/(ld)2/(ld)n - (ld)1/(ld)12/(ld)n/(ld)n + (ld)1/(ld)120/(ld)n/(ld)n/(ld)n/(ld)n;
}

int main(){
    cout.precision(20);
    for(int i=1;i<=1000000;i++){
        h[i] = h[i - 1] + (ld)1/(ld)i;
    }
    ll n; cin >> n;
    ld ans = 0;
    for(ll l = 1;l<=n;){
        ll r = n/(n/l);
        if(l>r) break;
        ans += (H(r) - H(l - 1))*H(n/l);
        l = r + 1;
    }
    cout << ans << "\n";
}
0