結果

問題 No.811 約数の個数の最大化
ユーザー titiatitia
提出日時 2019-04-12 21:41:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-09-14 17:51:38
合計ジャッジ時間 2,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 63 ms
66,432 KB
testcase_02 AC 93 ms
76,032 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 59 ms
66,048 KB
testcase_06 AC 51 ms
62,840 KB
testcase_07 AC 62 ms
67,456 KB
testcase_08 AC 64 ms
67,456 KB
testcase_09 AC 98 ms
76,544 KB
testcase_10 AC 74 ms
72,320 KB
testcase_11 AC 62 ms
71,168 KB
testcase_12 AC 61 ms
66,304 KB
testcase_13 AC 209 ms
78,336 KB
testcase_14 AC 69 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x=N
import math 
L=int(math.sqrt(x))

FACT=dict()

for i in range(2,L+2):
    while x%i==0:
        FACT[i]=FACT.get(i,0)+1
        x=x//i

if x!=1:
    FACT[x]=FACT.get(x,0)+1

ANS=[]
for i in range(1,N):

    #素因数の個数
    j=i
    COMPRIME=0
    
    for f in FACT:
        com=FACT[f]

        com_f=0
        while j%f==0 and com_f<com:
            j//=f
            com_f+=1

        COMPRIME+=com_f

    #print(j,COMPRIME)

    if COMPRIME<K:
        continue
    ANS.append(i)


ANS2=[]
for ans in ANS:
    x=ans

    L=int(math.sqrt(x))
    FACT=dict()
    
    for i in range(2,L+2):
        while x%i==0:
            FACT[i]=FACT.get(i,0)+1
            x=x//i

    if x!=1:
        FACT[x]=FACT.get(x,0)+1

    ANSNUM=1
    for f in FACT.values():
        ANSNUM*=f+1

    ANS2.append(ANSNUM)

print(ANS[ANS2.index(max(ANS2))])
0