結果

問題 No.2645 Sum of Divisors?
ユーザー shobonvipshobonvip
提出日時 2024-02-19 06:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 91,944 KB
最終ジャッジ日時 2024-09-29 01:07:06
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
75,080 KB
testcase_01 AC 53 ms
76,940 KB
testcase_02 AC 111 ms
91,808 KB
testcase_03 AC 48 ms
74,456 KB
testcase_04 AC 49 ms
74,684 KB
testcase_05 AC 48 ms
74,580 KB
testcase_06 AC 147 ms
91,796 KB
testcase_07 AC 149 ms
91,792 KB
testcase_08 AC 48 ms
75,196 KB
testcase_09 AC 50 ms
74,212 KB
testcase_10 AC 48 ms
73,800 KB
testcase_11 AC 50 ms
75,124 KB
testcase_12 AC 48 ms
73,780 KB
testcase_13 AC 49 ms
74,880 KB
testcase_14 AC 50 ms
75,132 KB
testcase_15 AC 50 ms
74,572 KB
testcase_16 AC 57 ms
77,160 KB
testcase_17 AC 51 ms
76,764 KB
testcase_18 AC 54 ms
77,172 KB
testcase_19 AC 52 ms
76,864 KB
testcase_20 AC 53 ms
77,364 KB
testcase_21 AC 53 ms
78,552 KB
testcase_22 AC 56 ms
77,920 KB
testcase_23 AC 62 ms
80,372 KB
testcase_24 AC 67 ms
82,848 KB
testcase_25 AC 65 ms
82,732 KB
testcase_26 AC 70 ms
83,708 KB
testcase_27 AC 71 ms
84,560 KB
testcase_28 AC 96 ms
91,668 KB
testcase_29 AC 152 ms
91,940 KB
testcase_30 AC 99 ms
91,752 KB
testcase_31 AC 114 ms
91,944 KB
testcase_32 AC 138 ms
91,860 KB
testcase_33 AC 100 ms
91,576 KB
testcase_34 AC 125 ms
91,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
gamma = .5772156649015328606065120
mx = 1000000

H_table = [0] * (mx + 1)

def H(n):
	if n < 0: return 0.0
	if n <= mx: return H_table[n]
	return math.log(n) + gamma

for i in range(1, mx+1):
	H_table[i] = H_table[i-1] + 1 / i

n = int(input())
ans = 0.0
i = n
while i > 0:
	v = n // i
	j = n // (v + 1)
	ans += H(v) * (H(i) - H(j))
	i = j

print(ans)
0