結果

問題 No.811 約数の個数の最大化
ユーザー KazunKazun
提出日時 2020-11-14 03:25:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-22 22:41:23
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 61 ms
65,792 KB
testcase_02 AC 137 ms
77,284 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 46 ms
58,752 KB
testcase_05 AC 85 ms
76,536 KB
testcase_06 AC 91 ms
76,672 KB
testcase_07 AC 92 ms
76,648 KB
testcase_08 AC 112 ms
76,948 KB
testcase_09 AC 110 ms
77,056 KB
testcase_10 AC 105 ms
76,516 KB
testcase_11 AC 135 ms
76,820 KB
testcase_12 AC 99 ms
76,584 KB
testcase_13 AC 144 ms
77,440 KB
testcase_14 AC 145 ms
77,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Smallest_Prime_Factor(N):
    """0,1,2,...,Nの最小の素因数のリスト(0,1については1にしている)
    """

    N=abs(N)
    L=[0]*(N+1)
    L[0]=L[1]=1

    for p in range(2,N+1):
        if L[p]==0:
            for q in range(p,N+1,p):
                if L[q]==0:
                    L[q]=p

    return L

def Faster_Prime_Factorization(N,L):
    """

    L:Smallest_Prime_Factors(N)で求めたリスト
    """
    N=abs(N)
    if N<=1:
        return [[N,1]]

    D=[]
    while N>1:
        a=L[N]
        k=0
        while L[N]==a:
            k+=1
            N//=a
        D.append([a,k])
    return D
#================================================
N,K=map(int,input().split())
T=Smallest_Prime_Factor(N)

A={p:e for p,e in Faster_Prime_Factorization(N,T)}

C=0
M=0
for i in range(2,N):
    B={p:e for p,e in Faster_Prime_Factorization(i,T)}

    X=0
    for p in B:
        if p in A:
            X+=min(A[p],B[p])

    if X>=K:
        D=1
        for p in B:
            D*=(B[p]+1)

        if D>C:
            C=D
            M=i
print(M)
0