結果

問題 No.847 Divisors of Power
ユーザー flippergoflippergo
提出日時 2024-10-25 08:42:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 594 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 82,832 KB
最終ジャッジ日時 2024-10-25 08:42:26
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,772 KB
testcase_01 AC 36 ms
53,980 KB
testcase_02 AC 36 ms
52,952 KB
testcase_03 AC 36 ms
54,056 KB
testcase_04 AC 47 ms
63,364 KB
testcase_05 AC 35 ms
53,548 KB
testcase_06 AC 42 ms
58,500 KB
testcase_07 AC 39 ms
58,976 KB
testcase_08 AC 40 ms
58,316 KB
testcase_09 AC 42 ms
59,768 KB
testcase_10 AC 43 ms
61,972 KB
testcase_11 AC 50 ms
64,124 KB
testcase_12 AC 39 ms
59,860 KB
testcase_13 AC 49 ms
64,128 KB
testcase_14 AC 48 ms
64,496 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
N,K,M = map(int,input().split())
C = {}
x = N
for i in range(2,N):
    if i*i>N:break
    if x%i==0:
        C[i] = 0
        while x%i==0:
            C[i] += 1
            x = x//i
        if x==1:break
if x>1:
    C[x] = 1
D = {p:[] for p in C}
for p in C:
    for k in range(C[p]*K+1):
        if pow(p,k)>M:break
        D[p].append(pow(p,k))
A = []
for p in D:
    A.append(list(range(len(D[p]))))
B = list(D.keys())
ans = 0
for z in product(*A):
    cnt = 1
    for i in range(len(z)):
        cnt *= D[B[i]][z[i]]
    if cnt<=M:
        ans += 1
print(ans)
0