結果

問題 No.2645 Sum of Divisors?
ユーザー shobonvipshobonvip
提出日時 2024-02-19 06:34:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,172 KB
最終ジャッジ日時 2024-09-29 01:07:38
合計ジャッジ時間 25,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
49,908 KB
testcase_01 AC 297 ms
49,988 KB
testcase_02 AC 1,245 ms
49,904 KB
testcase_03 AC 285 ms
49,988 KB
testcase_04 AC 297 ms
49,944 KB
testcase_05 AC 321 ms
50,092 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 299 ms
50,172 KB
testcase_09 AC 291 ms
50,008 KB
testcase_10 AC 296 ms
49,968 KB
testcase_11 AC 281 ms
50,024 KB
testcase_12 AC 306 ms
49,896 KB
testcase_13 AC 292 ms
49,956 KB
testcase_14 AC 299 ms
50,048 KB
testcase_15 AC 289 ms
50,016 KB
testcase_16 AC 296 ms
49,900 KB
testcase_17 AC 308 ms
50,052 KB
testcase_18 AC 331 ms
50,168 KB
testcase_19 AC 324 ms
49,912 KB
testcase_20 AC 333 ms
49,880 KB
testcase_21 AC 313 ms
49,944 KB
testcase_22 AC 330 ms
49,912 KB
testcase_23 AC 375 ms
49,908 KB
testcase_24 AC 503 ms
49,996 KB
testcase_25 AC 464 ms
50,084 KB
testcase_26 AC 528 ms
50,016 KB
testcase_27 AC 558 ms
49,964 KB
testcase_28 AC 923 ms
49,900 KB
testcase_29 TLE -
testcase_30 AC 1,005 ms
49,956 KB
testcase_31 AC 1,346 ms
49,972 KB
testcase_32 AC 1,767 ms
50,084 KB
testcase_33 AC 1,012 ms
49,956 KB
testcase_34 AC 1,611 ms
50,048 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