結果

問題 No.811 約数の個数の最大化
ユーザー yomo3yomo3
提出日時 2020-06-09 11:45:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-06-10 03:42:56
合計ジャッジ時間 1,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,052 KB
testcase_01 AC 44 ms
60,236 KB
testcase_02 AC 36 ms
52,912 KB
testcase_03 AC 37 ms
52,912 KB
testcase_04 AC 37 ms
52,740 KB
testcase_05 AC 40 ms
60,304 KB
testcase_06 AC 35 ms
53,428 KB
testcase_07 AC 38 ms
59,068 KB
testcase_08 WA -
testcase_09 AC 58 ms
68,240 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 153 ms
76,428 KB
testcase_14 AC 33 ms
53,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factors(n):
    f = []
    c = 0
    while n % 2 == 0:
        n //= 2
        c += 1
    if c > 0:
        f.append([2, c])
    p = 3
    while p * p <= n:
        if n % p == 0:
            c = 0
            while n % p == 0:
                n //= p
                c += 1
            if c > 0:
                f.append([p, c])
        p += 2
    if n != 1:
        f.append([n, 1])
    return f

def divisors(n):
    divs = []
    for d in range(1, int(n**0.5) + 1):
        if n % d == 0:
            divs.append(d)
            q = n // d
            if q != d:
                divs.append(q)
    return divs

N, K = map(int, input().split())

nf = factors(N)

m = 1
i = 0
while K > 0:
    if nf[i][1] > 0:
        m *= nf[i][0]
        nf[i][1] -= 1
        K -= 1
    i = (i + 1) % len(nf)

ans = 0
max_divs = 0

M = m
while M < N:
    divs = len(divisors(M))
    if divs > max_divs:
        ans = M
        max_divs = divs
    M += m

print(ans)
0