結果

問題 No.2645 Sum of Divisors?
ユーザー shobonvipshobonvip
提出日時 2024-02-11 11:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 92,012 KB
最終ジャッジ日時 2024-09-28 17:58:49
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
75,092 KB
testcase_01 AC 60 ms
76,420 KB
testcase_02 AC 125 ms
91,884 KB
testcase_03 AC 51 ms
74,448 KB
testcase_04 AC 53 ms
73,776 KB
testcase_05 AC 53 ms
74,132 KB
testcase_06 AC 164 ms
91,848 KB
testcase_07 AC 164 ms
91,592 KB
testcase_08 AC 52 ms
74,136 KB
testcase_09 AC 50 ms
74,528 KB
testcase_10 AC 50 ms
74,640 KB
testcase_11 AC 50 ms
74,432 KB
testcase_12 AC 51 ms
74,540 KB
testcase_13 AC 53 ms
74,968 KB
testcase_14 AC 53 ms
75,096 KB
testcase_15 AC 54 ms
74,152 KB
testcase_16 AC 58 ms
77,188 KB
testcase_17 AC 56 ms
77,328 KB
testcase_18 AC 55 ms
77,368 KB
testcase_19 AC 56 ms
77,588 KB
testcase_20 AC 56 ms
78,152 KB
testcase_21 AC 56 ms
78,472 KB
testcase_22 AC 58 ms
78,664 KB
testcase_23 AC 63 ms
81,588 KB
testcase_24 AC 69 ms
83,380 KB
testcase_25 AC 68 ms
83,684 KB
testcase_26 AC 74 ms
84,260 KB
testcase_27 AC 76 ms
85,024 KB
testcase_28 AC 97 ms
91,532 KB
testcase_29 AC 164 ms
91,696 KB
testcase_30 AC 101 ms
91,836 KB
testcase_31 AC 118 ms
91,600 KB
testcase_32 AC 144 ms
91,628 KB
testcase_33 AC 101 ms
92,012 KB
testcase_34 AC 136 ms
91,772 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 + 1 / (2 * n)

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