結果

問題 No.1659 Product of Divisors
ユーザー titiatitia
提出日時 2021-08-28 01:45:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,436 KB
最終ジャッジ日時 2024-11-21 09:10:10
合計ジャッジ時間 47,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 71 ms
152,436 KB
testcase_02 AC 42 ms
57,472 KB
testcase_03 AC 43 ms
128,640 KB
testcase_04 AC 301 ms
81,024 KB
testcase_05 AC 142 ms
152,320 KB
testcase_06 AC 113 ms
83,352 KB
testcase_07 AC 68 ms
81,664 KB
testcase_08 AC 60 ms
63,232 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 41 ms
128,640 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import math 

N,K=map(int,input().split())
mod=10**9+7


x=N
L=int(math.sqrt(x))

FACT=dict()

for i in range(2,L+2):
    while x%i==0:
        FACT[i]=FACT.get(i,0)+1
        x=x//i

if x!=1:
    FACT[x]=FACT.get(x,0)+1

def calc(x):
    DP=[0]*(x+1)
    DP[-1]=1

    for i in range(K):
        NDP=[0]*(x+1)

        for j in range(x+1):
            if DP[j]!=0:
                for k in range(j+1):
                    NDP[k]+=DP[j]
                    NDP[k]%=mod
        DP=NDP

    return sum(DP)

ANS=1
for f in FACT:
    ANS*=calc(FACT[f])
    ANS%=mod

print(ANS%mod)
0