結果

問題 No.2645 Sum of Divisors?
ユーザー rikein12rikein12
提出日時 2024-02-20 01:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 92,156 KB
最終ジャッジ日時 2024-09-29 03:21:00
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
74,332 KB
testcase_01 AC 57 ms
76,716 KB
testcase_02 AC 103 ms
91,316 KB
testcase_03 AC 53 ms
74,536 KB
testcase_04 AC 55 ms
74,576 KB
testcase_05 AC 54 ms
74,480 KB
testcase_06 AC 122 ms
91,432 KB
testcase_07 AC 123 ms
91,508 KB
testcase_08 AC 54 ms
74,460 KB
testcase_09 AC 54 ms
74,660 KB
testcase_10 AC 54 ms
75,320 KB
testcase_11 AC 53 ms
75,008 KB
testcase_12 AC 56 ms
74,956 KB
testcase_13 AC 56 ms
74,376 KB
testcase_14 AC 55 ms
75,004 KB
testcase_15 AC 56 ms
74,052 KB
testcase_16 AC 58 ms
76,168 KB
testcase_17 AC 57 ms
76,348 KB
testcase_18 AC 62 ms
78,028 KB
testcase_19 AC 62 ms
80,044 KB
testcase_20 AC 62 ms
79,156 KB
testcase_21 AC 63 ms
78,508 KB
testcase_22 AC 62 ms
79,864 KB
testcase_23 AC 65 ms
80,788 KB
testcase_24 AC 78 ms
88,716 KB
testcase_25 AC 76 ms
87,368 KB
testcase_26 AC 81 ms
90,656 KB
testcase_27 AC 76 ms
87,224 KB
testcase_28 AC 91 ms
92,156 KB
testcase_29 AC 126 ms
91,688 KB
testcase_30 AC 95 ms
91,552 KB
testcase_31 AC 103 ms
91,812 KB
testcase_32 AC 116 ms
91,876 KB
testcase_33 AC 96 ms
91,964 KB
testcase_34 AC 110 ms
92,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())

def zeta(x):
    return 1/x

zeta_c = [0] * (10**6 + 1)
for i in range(1,10**6 + 1):
    zeta_c[i] = zeta_c[i-1] + 1/i
def zeta_cumsum(x):
    if x <= 10**6:
        return zeta_c[x]
    else:
        return math.log(x) + 0.5772156649

M = int(N ** 0.5)

ans = 0
for i in range(1, M+1):
    ans += zeta_cumsum(N//i) * zeta(i)

for j in range(1, M+1):
    ans += (zeta_cumsum(N//j) - zeta_cumsum(M))* zeta(j)

print(ans)
0