結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー 👑 KazunKazun
提出日時 2021-07-21 22:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 86,312 KB
最終ジャッジ日時 2024-10-03 02:33:00
合計ジャッジ時間 7,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
86,312 KB
testcase_01 AC 219 ms
85,216 KB
testcase_02 AC 215 ms
85,780 KB
testcase_03 AC 209 ms
84,956 KB
testcase_04 AC 204 ms
85,420 KB
testcase_05 AC 216 ms
85,168 KB
testcase_06 AC 208 ms
85,548 KB
testcase_07 AC 204 ms
85,292 KB
testcase_08 AC 217 ms
85,168 KB
testcase_09 AC 210 ms
85,324 KB
testcase_10 AC 133 ms
82,072 KB
testcase_11 AC 141 ms
83,560 KB
testcase_12 AC 142 ms
83,924 KB
testcase_13 AC 144 ms
83,988 KB
testcase_14 AC 141 ms
83,368 KB
testcase_15 AC 145 ms
83,584 KB
testcase_16 AC 145 ms
84,068 KB
testcase_17 AC 148 ms
83,532 KB
testcase_18 AC 149 ms
82,876 KB
testcase_19 AC 52 ms
64,640 KB
testcase_20 AC 51 ms
63,232 KB
testcase_21 AC 51 ms
63,616 KB
testcase_22 AC 53 ms
63,360 KB
testcase_23 AC 52 ms
63,232 KB
testcase_24 AC 52 ms
64,936 KB
testcase_25 AC 51 ms
62,720 KB
testcase_26 AC 52 ms
64,384 KB
testcase_27 AC 53 ms
64,256 KB
testcase_28 AC 40 ms
54,144 KB
testcase_29 AC 40 ms
54,128 KB
testcase_30 AC 41 ms
54,144 KB
testcase_31 AC 40 ms
53,760 KB
testcase_32 AC 40 ms
53,888 KB
testcase_33 AC 40 ms
54,528 KB
testcase_34 AC 41 ms
53,632 KB
testcase_35 AC 41 ms
53,888 KB
testcase_36 AC 40 ms
54,144 KB
testcase_37 AC 40 ms
54,144 KB
testcase_38 AC 40 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Prime_Factorization(N):
    if N<0:
        R=[[-1,1]]
    else:
        R=[]

    N=abs(N)

    if N&1==0:
        C=0
        while N&1==0:
            N>>=1
            C+=1
        R.append([2,C])

    if N%3==0:
        C=0
        while N%3==0:
            N//=3
            C+=1
        R.append([3,C])

    k=5
    Flag=0
    while k*k<=N:
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])
        k+=2+2*Flag
        Flag^=1

    if N!=1:
        R.append([N,1])

    return R

def solve(X):
    L=[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71]

    D=defaultdict(int)
    for y in L:
        if X%y!=0:
            break
        else:
            t=0
            x=X
            while x%y==0:
                t+=1
                x//=y
            D[y]=t

    for u in range(2,y):
        alpha=beta=1
        for p,e in S[u]:
            alpha*=1+D[p]
            beta *=1+D[p]+e

        if 2*alpha==beta:
            return u*X

    return y*X
#================================================
import sys
from collections import defaultdict

input=sys.stdin.readline
write=sys.stdout.write

S=[[]]
for a in range(1,101):
    S.append(Prime_Factorization(a))

T=int(input())

Ans=[]
for _ in range(T):
    X=int(input())
    Ans.append(solve(X))

write("\n".join(map(str,Ans)))
0