結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-21 21:59:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,614 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 87,072 KB
最終ジャッジ日時 2024-07-17 18:15:55
合計ジャッジ時間 41,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,392 ms
83,784 KB
testcase_11 AC 1,558 ms
86,240 KB
testcase_12 AC 1,524 ms
86,128 KB
testcase_13 AC 1,367 ms
86,280 KB
testcase_14 AC 1,369 ms
86,292 KB
testcase_15 AC 1,366 ms
86,400 KB
testcase_16 AC 1,373 ms
86,796 KB
testcase_17 AC 1,378 ms
86,508 KB
testcase_18 AC 1,386 ms
86,272 KB
testcase_19 AC 90 ms
72,448 KB
testcase_20 AC 92 ms
73,216 KB
testcase_21 AC 84 ms
70,144 KB
testcase_22 AC 86 ms
72,548 KB
testcase_23 AC 83 ms
70,784 KB
testcase_24 AC 83 ms
70,144 KB
testcase_25 AC 87 ms
71,168 KB
testcase_26 AC 87 ms
71,808 KB
testcase_27 AC 85 ms
71,296 KB
testcase_28 AC 49 ms
59,904 KB
testcase_29 AC 49 ms
59,392 KB
testcase_30 AC 52 ms
61,056 KB
testcase_31 AC 53 ms
61,440 KB
testcase_32 AC 51 ms
61,312 KB
testcase_33 AC 54 ms
61,056 KB
testcase_34 AC 52 ms
61,312 KB
testcase_35 AC 51 ms
61,184 KB
testcase_36 AC 54 ms
61,952 KB
testcase_37 AC 52 ms
61,056 KB
testcase_38 AC 54 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

6 = 2 * 3
24 = 2*2*2*6

2*2

2->4

2倍を素因数分解する

A * B * C

最小の含まれない素因数は割と小さいはず
それ以下に関して、探索する

31以下

2*3*5*7*11*13*17*19*23*29*31
で、10個

この内、積で31未満の物

4
8
16
9
27
25


"""

from sys import stdin
import sys
from collections import deque

def Sieve(n): #n以下の素数全列挙(O(nloglogn)) retは素数が入ってる。divlisはその数字の素因数が一つ入ってる

    ret = []
    divlis = [-1] * (n+1) #何で割ったかのリスト(初期値は-1)
    
    flag = [True] * (n+1)
    flag[0] = False
    flag[1] = False

    ind = 2
    while ind <= n:

        if flag[ind]:
            ret.append(ind)

            ind2 = ind ** 2

            while ind2 <= n:
                flag[ind2] = False
                divlis[ind2] = ind
                ind2 += ind

        ind += 1

    return ret,divlis

plis,tmp = Sieve(32)
#print (plis)

tt = int(stdin.readline())
ANS = []

for loop in range(tt):

    X = int(stdin.readline())

    XN = 1
    TX = X
    for p in plis:
        now = 1
        while TX % p == 0:
            now += 1
            TX //= p
        XN *= now

    ans = float("inf")

    for i in range(2,32):

        NY = X * i
        if NY % X != 0:
            continue
        
        YN = 1
        TY = NY
        for p in plis:
            now = 1
            while TY % p == 0:
                now += 1
                TY //= p
            YN *= now

        if YN == XN * 2:
            ans = min(ans,NY)

    ANS.append(str(ans))

print ("\n".join(ANS))
0