結果

問題 No.847 Divisors of Power
ユーザー stngstng
提出日時 2022-07-17 16:51:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-06-29 17:56:52
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 33 ms
53,248 KB
testcase_05 AC 32 ms
52,736 KB
testcase_06 AC 34 ms
57,984 KB
testcase_07 AC 35 ms
57,728 KB
testcase_08 AC 35 ms
57,728 KB
testcase_09 AC 36 ms
57,856 KB
testcase_10 AC 36 ms
57,600 KB
testcase_11 AC 39 ms
58,752 KB
testcase_12 AC 36 ms
57,984 KB
testcase_13 AC 39 ms
59,008 KB
testcase_14 AC 36 ms
58,624 KB
testcase_15 AC 113 ms
77,056 KB
testcase_16 AC 39 ms
57,984 KB
testcase_17 AC 41 ms
57,344 KB
testcase_18 AC 46 ms
63,104 KB
testcase_19 AC 62 ms
73,088 KB
testcase_20 AC 35 ms
57,728 KB
testcase_21 AC 99 ms
77,568 KB
testcase_22 AC 35 ms
57,984 KB
testcase_23 AC 38 ms
57,984 KB
testcase_24 AC 102 ms
77,296 KB
testcase_25 AC 36 ms
58,112 KB
testcase_26 AC 32 ms
51,968 KB
testcase_27 AC 35 ms
57,216 KB
testcase_28 AC 32 ms
52,608 KB
testcase_29 AC 33 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,m = map(int,input().split())
import math
import sys
sys.setrecursionlimit(10**7)

def base10to(n, b):
    if (int(n/b)):
        return base10to(int(n/b), b) + str(n%b)
    return str(n%b)


def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr

fac = factorization(n)
#fac = fac[1:]
#print(fac)
ans = 0

def dfs(v,ttl):
    global ans
    if v == len(fac):
        ans += 1
        return
    for i in range(31):
        if fac[v][1]*k < i:
            break
        if fac[v][0] == 1 and i >= 1:
            break
        num = pow(fac[v][0],i)
        if ttl*num <= m:
            dfs(v+1,ttl*num)
        else:
            break
#if len(fac) > 0:
dfs(0,1)
print(ans)
0