結果

問題 No.1659 Product of Divisors
ユーザー ああいいああいい
提出日時 2022-03-05 11:30:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 791 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 75,968 KB
最終ジャッジ日時 2024-07-19 12:06:54
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
73,728 KB
testcase_01 AC 84 ms
73,600 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 85 ms
73,728 KB
testcase_04 AC 79 ms
73,856 KB
testcase_05 AC 81 ms
73,856 KB
testcase_06 AC 83 ms
74,112 KB
testcase_07 WA -
testcase_08 AC 82 ms
73,728 KB
testcase_09 AC 82 ms
73,472 KB
testcase_10 WA -
testcase_11 AC 82 ms
73,348 KB
testcase_12 AC 81 ms
73,856 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 81 ms
73,216 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 81 ms
73,216 KB
testcase_18 AC 79 ms
73,472 KB
testcase_19 AC 86 ms
74,240 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 81 ms
73,344 KB
testcase_24 AC 84 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
import sys

if N == 1:
    print(1)
    exit()

C = 10 ** 6
dat = [0] * C
from collections import defaultdict
d = defaultdict(int)
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        if N % i == 0:
            while N % i == 0:
                N //= i
                d[i] += 1
P = 10 ** 9 + 7
fact = [1] * 100
fact_inv = [1] * 100
for i in range(2,100):
    fact[i] = fact[i-1] * i % P
fact_inv[-1] = pow(fact[-1],P-2,P)
for i in range(98,0,-1):
    fact_inv[i] = fact_inv[i+1] * (i + 1) % P
ans = 1
def h(n,k):
    ans = 1
    u = n + k -1
    for i in range(n):
        ans = ans * (u - i) % P
    ans = ans * fact_inv[n] % P
    return ans
for v in d.values():
    ans = ans * h(v,K+1) % P
print(ans)
0