結果

問題 No.888 約数の総和
ユーザー 双六
提出日時 2020-07-22 00:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-12-31 22:48:31
合計ジャッジ時間 4,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 10 ** 6 + 1
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

def prime_factorization(N):
	D = defaultdict(int)
	for i in plist:
		while N % i == 0:
			D[i] += 1; N = int(N // i)

	#num以上の素数が含まれているケースの処理
	if N != 1:
		D[N] += 1

	return D

#処理内容
def main():
	N = int(input())
	fac = prime_factorization(N)
	ans = 1
	for key, val in fac.items():
		ans *= int(((key ** (val + 1) - 1) // (key - 1)))

	print(ans)





if __name__ == '__main__':
	main()
0