結果

問題 No.2645 Sum of Divisors?
ユーザー shobonvipshobonvip
提出日時 2024-02-19 06:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 92,080 KB
最終ジャッジ日時 2024-09-29 01:07:10
合計ジャッジ時間 3,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
75,136 KB
testcase_01 AC 55 ms
77,572 KB
testcase_02 AC 112 ms
91,724 KB
testcase_03 AC 49 ms
74,376 KB
testcase_04 AC 50 ms
75,680 KB
testcase_05 AC 46 ms
74,508 KB
testcase_06 AC 154 ms
91,700 KB
testcase_07 AC 156 ms
91,768 KB
testcase_08 AC 48 ms
74,084 KB
testcase_09 AC 46 ms
73,904 KB
testcase_10 AC 48 ms
74,492 KB
testcase_11 AC 48 ms
73,796 KB
testcase_12 AC 53 ms
74,904 KB
testcase_13 AC 49 ms
75,560 KB
testcase_14 AC 49 ms
75,052 KB
testcase_15 AC 51 ms
74,748 KB
testcase_16 AC 57 ms
77,488 KB
testcase_17 AC 59 ms
77,368 KB
testcase_18 AC 57 ms
77,376 KB
testcase_19 AC 53 ms
77,232 KB
testcase_20 AC 54 ms
77,936 KB
testcase_21 AC 53 ms
77,404 KB
testcase_22 AC 55 ms
78,908 KB
testcase_23 AC 61 ms
81,188 KB
testcase_24 AC 67 ms
82,904 KB
testcase_25 AC 64 ms
83,016 KB
testcase_26 AC 69 ms
84,348 KB
testcase_27 AC 71 ms
85,560 KB
testcase_28 AC 93 ms
92,080 KB
testcase_29 AC 158 ms
91,648 KB
testcase_30 AC 96 ms
91,864 KB
testcase_31 AC 116 ms
91,536 KB
testcase_32 AC 137 ms
91,644 KB
testcase_33 AC 101 ms
91,712 KB
testcase_34 AC 137 ms
91,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
mx = 1000000

logmx = math.log(mx)
H_table = [0] * (mx+1)

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

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