結果

問題 No.811 約数の個数の最大化
ユーザー ああいいああいい
提出日時 2022-03-01 00:19:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 106,544 KB
最終ジャッジ日時 2024-07-07 03:30:14
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,136 KB
testcase_01 AC 54 ms
67,412 KB
testcase_02 AC 187 ms
105,188 KB
testcase_03 AC 38 ms
54,808 KB
testcase_04 AC 44 ms
61,368 KB
testcase_05 AC 69 ms
74,432 KB
testcase_06 AC 87 ms
79,920 KB
testcase_07 AC 90 ms
80,832 KB
testcase_08 AC 115 ms
87,312 KB
testcase_09 AC 120 ms
87,944 KB
testcase_10 AC 103 ms
84,956 KB
testcase_11 AC 184 ms
105,784 KB
testcase_12 AC 97 ms
84,464 KB
testcase_13 AC 200 ms
106,544 KB
testcase_14 AC 180 ms
105,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
dat = [0] * (N + 1)
from collections import defaultdict
d = [defaultdict(int) for _ in range(N+1)]
n = N
for i in range(2,N+1):
    if dat[i] == 0:
        for j in range(i,N+1,i):
            dat[j] = 1
        u = i
        count = 0
        while n % i == 0:
            count += 1
            n //= i

        c = 1
        while u <= N:
            for j in range(u,N+1,u):
                d[j][i] += 1
                if c <= count:
                    d[j][-1] += 1
            c += 1
            u *= i
M = 0
div = 0
for i in range(2,N):
    if d[i][-1] >= K:
        tmp = 1
        for k in d[i]:
            if k == -1:continue
            tmp *= (d[i][k] + 1)
        if tmp > div:
            div = tmp
            M = i
print(M)
0