結果

問題 No.847 Divisors of Power
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-11 17:10:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 773 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-06-27 11:39:55
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,240 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 40 ms
55,808 KB
testcase_04 AC 48 ms
63,488 KB
testcase_05 AC 40 ms
54,528 KB
testcase_06 AC 41 ms
57,728 KB
testcase_07 AC 40 ms
57,984 KB
testcase_08 AC 41 ms
57,728 KB
testcase_09 AC 40 ms
57,472 KB
testcase_10 AC 44 ms
60,032 KB
testcase_11 AC 48 ms
62,336 KB
testcase_12 AC 41 ms
57,728 KB
testcase_13 AC 47 ms
61,696 KB
testcase_14 AC 47 ms
61,440 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 #

n,k,m=map(int,input().split())
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
l=factorization(n)
p=[]
for key,val in l:
    if key<=m:
        p.append([key,val*k])
kouho=[]
for key,val in p:
    tmp=[]
    for i in range(val+1):
        if pow(key,i)<=m:
            tmp.append(pow(key,i))
    kouho.append(tmp)
from itertools import product
ans=set()
for i in product(*kouho):
    now=1
    for j in i:
        now*=j
    if now<=m:
        ans.add(now)
print(len(ans))
0