結果

問題 No.811 約数の個数の最大化
ユーザー ntudantuda
提出日時 2024-12-28 10:23:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,836 KB
最終ジャッジ日時 2024-12-28 10:23:34
合計ジャッジ時間 3,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
54,016 KB
testcase_01 AC 86 ms
68,992 KB
testcase_02 AC 300 ms
82,360 KB
testcase_03 AC 51 ms
53,760 KB
testcase_04 AC 60 ms
60,928 KB
testcase_05 AC 125 ms
77,056 KB
testcase_06 AC 142 ms
77,440 KB
testcase_07 AC 120 ms
77,312 KB
testcase_08 AC 187 ms
77,824 KB
testcase_09 AC 163 ms
78,208 KB
testcase_10 AC 170 ms
77,824 KB
testcase_11 AC 244 ms
81,976 KB
testcase_12 AC 167 ms
77,568 KB
testcase_13 AC 245 ms
83,700 KB
testcase_14 AC 266 ms
83,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def seachPrimeNum(N):
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

def factorization(x):
    dic = defaultdict(int)
    for p in PL:
        if x in PL:
            dic[x] += 1
            return dic
        while x % p == 0:
            dic[p] += 1
            x //= p
        if x == 1:
            return dic

N, K = map(int,input().split())
PL = seachPrimeNum(N)
PL = set(PL)
F1s = factorization(N)
ans = 1
maxdiv = 1
for i in range(2,N):
    Fs = factorization(i)
    ndiv = 1
    for v in Fs.values():
        ndiv *= (v + 1)
    cnt = 0
    for k,v in F1s.items():
        cnt += min(Fs[k],v)
    if cnt < K:
        continue
    if ndiv > maxdiv:
        ans = i
        maxdiv = ndiv
print(ans)
0