結果
問題 |
No.888 約数の総和
|
ユーザー |
|
提出日時 | 2020-07-29 18:49:00 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-29 22:22:25 |
合計ジャッジ時間 | 2,345 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
from collections import Counter def prime_factorize(n): a = [] while n % 2 == 0: a.append(2) n //= 2 f = 3 while f * f <= n: if n % f == 0: a.append(f) n //= f else: f += 2 if n != 1: a.append(n) return a n = int(input()) c = Counter(prime_factorize(n)).most_common() ans = 1 for i in c: cnt = 0 for j in range(i[1] + 1): cnt += i[0] ** j ans *= cnt print(ans)