結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー titiatitia
提出日時 2021-08-13 21:02:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 77,756 KB
最終ジャッジ日時 2024-10-03 15:47:26
合計ジャッジ時間 12,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
76,608 KB
testcase_01 AC 374 ms
77,728 KB
testcase_02 AC 342 ms
77,264 KB
testcase_03 AC 323 ms
77,424 KB
testcase_04 AC 326 ms
77,148 KB
testcase_05 AC 335 ms
77,388 KB
testcase_06 AC 337 ms
77,004 KB
testcase_07 AC 332 ms
76,752 KB
testcase_08 AC 331 ms
77,200 KB
testcase_09 AC 340 ms
77,416 KB
testcase_10 AC 276 ms
77,308 KB
testcase_11 AC 277 ms
76,848 KB
testcase_12 AC 276 ms
77,092 KB
testcase_13 AC 284 ms
77,064 KB
testcase_14 AC 304 ms
77,756 KB
testcase_15 AC 309 ms
77,400 KB
testcase_16 AC 273 ms
76,872 KB
testcase_17 AC 273 ms
77,064 KB
testcase_18 AC 304 ms
77,212 KB
testcase_19 AC 92 ms
77,160 KB
testcase_20 AC 69 ms
73,696 KB
testcase_21 AC 76 ms
76,992 KB
testcase_22 AC 81 ms
76,972 KB
testcase_23 AC 79 ms
76,628 KB
testcase_24 AC 80 ms
76,964 KB
testcase_25 AC 70 ms
74,368 KB
testcase_26 AC 76 ms
77,232 KB
testcase_27 AC 85 ms
77,212 KB
testcase_28 AC 46 ms
64,680 KB
testcase_29 AC 46 ms
64,552 KB
testcase_30 AC 46 ms
63,432 KB
testcase_31 AC 45 ms
63,500 KB
testcase_32 AC 45 ms
64,000 KB
testcase_33 AC 46 ms
63,284 KB
testcase_34 AC 45 ms
63,636 KB
testcase_35 AC 45 ms
63,832 KB
testcase_36 AC 46 ms
63,184 KB
testcase_37 AC 46 ms
63,240 KB
testcase_38 AC 45 ms
63,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def fac(x):
    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

    return FACT

F=[[],[]]

for i in range(2,1000):
    F.append(fac(i))


T=int(input())
for tests in range(T):
    X=int(input())

    for i in range(2,1000):
        Y=X
        FA=F[i]

        bunbo=1
        bunsi=1

        for fa in FA:
            c=0
            while Y%fa==0:
                Y//=fa
                c+=1

            # c+FA[fa]+1/c+1
            bunbo*=c+1
            bunsi*=c+FA[fa]+1

        if bunbo*2==bunsi:
            print(X*i)
            break
                
0