結果

問題 No.1659 Product of Divisors
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-27 22:44:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 60,324 KB
最終ジャッジ日時 2024-11-21 03:54:34
合計ジャッジ時間 2,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,248 KB
testcase_01 AC 45 ms
59,560 KB
testcase_02 AC 46 ms
54,152 KB
testcase_03 AC 43 ms
55,668 KB
testcase_04 AC 40 ms
54,532 KB
testcase_05 AC 40 ms
54,244 KB
testcase_06 AC 40 ms
54,708 KB
testcase_07 AC 43 ms
59,560 KB
testcase_08 AC 40 ms
53,780 KB
testcase_09 AC 39 ms
53,776 KB
testcase_10 AC 47 ms
59,720 KB
testcase_11 AC 40 ms
53,544 KB
testcase_12 AC 41 ms
54,928 KB
testcase_13 AC 42 ms
55,304 KB
testcase_14 AC 40 ms
54,164 KB
testcase_15 AC 43 ms
59,556 KB
testcase_16 AC 43 ms
59,276 KB
testcase_17 AC 40 ms
54,904 KB
testcase_18 AC 40 ms
55,264 KB
testcase_19 AC 41 ms
54,376 KB
testcase_20 AC 43 ms
60,324 KB
testcase_21 AC 44 ms
59,756 KB
testcase_22 AC 48 ms
59,092 KB
testcase_23 AC 41 ms
54,744 KB
testcase_24 AC 44 ms
60,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def prime_factorize(n: int) -> list:
    res = []

    while n % 2 == 0:
        res.append(2)
        n //= 2

    f = 3

    while f ** 2 <= n:
        if n % f == 0:
            res.append(f)
            n //= f
        else:
            f += 2

    if n != 1:
        res.append(n)

    return res

mod = 10 ** 9 + 7

def comb(n, k):
    res = 1
    for i in range(k):
        res *= n - i
        res //= i + 1
    return res % mod
n, k = map(int, input().split())
c = Counter(prime_factorize(n))
ans = 1
for _, v in c.items():
    ans *= comb(k + v, v)
    ans %= mod
print(ans)
0