結果

問題 No.847 Divisors of Power
ユーザー H20H20
提出日時 2020-11-27 11:52:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 672 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 290,540 KB
最終ジャッジ日時 2024-07-23 21:33:43
合計ジャッジ時間 5,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,320 KB
testcase_01 AC 48 ms
60,616 KB
testcase_02 AC 49 ms
60,972 KB
testcase_03 AC 42 ms
55,184 KB
testcase_04 AC 53 ms
67,676 KB
testcase_05 AC 52 ms
65,716 KB
testcase_06 AC 45 ms
58,904 KB
testcase_07 AC 45 ms
59,256 KB
testcase_08 AC 47 ms
58,772 KB
testcase_09 AC 51 ms
61,440 KB
testcase_10 AC 51 ms
62,340 KB
testcase_11 AC 57 ms
64,984 KB
testcase_12 AC 50 ms
61,060 KB
testcase_13 AC 50 ms
63,988 KB
testcase_14 AC 56 ms
64,152 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 #

import copy

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
N,K,M= map(int,input().split())
D = make_divisors(N)
DD =[]
for d in D:
    if d<=M:
        DD.append(d)
CD = DD.copy()
temp = len(DD)
i=1
while i < K:
    for j in range(temp):
        for cd in CD:
            if DD[j]*cd<=M:
                DD.append(DD[j]*cd)
    i+=1
    DD = list(set(DD))
    if len(DD)==temp:
        break
    temp = len(DD)
print(len(DD))
0