結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー rlangevinrlangevin
提出日時 2023-04-20 23:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,072 KB
最終ジャッジ日時 2024-10-15 17:52:25
合計ジャッジ時間 11,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 710 ms
78,072 KB
testcase_01 AC 336 ms
77,516 KB
testcase_02 AC 334 ms
77,328 KB
testcase_03 AC 333 ms
77,396 KB
testcase_04 AC 332 ms
77,268 KB
testcase_05 AC 326 ms
77,324 KB
testcase_06 AC 333 ms
77,312 KB
testcase_07 AC 327 ms
77,432 KB
testcase_08 AC 328 ms
77,452 KB
testcase_09 AC 328 ms
77,264 KB
testcase_10 AC 220 ms
77,456 KB
testcase_11 AC 240 ms
77,568 KB
testcase_12 AC 242 ms
77,928 KB
testcase_13 AC 236 ms
77,164 KB
testcase_14 AC 229 ms
77,184 KB
testcase_15 AC 237 ms
77,904 KB
testcase_16 AC 231 ms
77,440 KB
testcase_17 AC 236 ms
77,824 KB
testcase_18 AC 246 ms
77,796 KB
testcase_19 AC 102 ms
77,184 KB
testcase_20 AC 92 ms
73,984 KB
testcase_21 AC 108 ms
76,928 KB
testcase_22 AC 92 ms
73,984 KB
testcase_23 AC 102 ms
77,184 KB
testcase_24 AC 103 ms
76,672 KB
testcase_25 AC 105 ms
77,184 KB
testcase_26 AC 106 ms
76,672 KB
testcase_27 AC 92 ms
73,728 KB
testcase_28 AC 46 ms
54,016 KB
testcase_29 AC 46 ms
53,760 KB
testcase_30 AC 46 ms
53,504 KB
testcase_31 AC 46 ms
53,504 KB
testcase_32 AC 46 ms
53,888 KB
testcase_33 AC 46 ms
53,888 KB
testcase_34 AC 46 ms
54,016 KB
testcase_35 AC 46 ms
53,376 KB
testcase_36 AC 46 ms
53,504 KB
testcase_37 AC 46 ms
53,504 KB
testcase_38 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import *

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    return arr

T = int(readline())
L = [None] * 32
for i in range(2, 32):
    L[i] = factorization(i)
    
prime = [2,3,5,7,11,13,17,19,23,29,31]
for _ in range(T):
    X = int(readline())
    XX = X
    D = defaultdict(int)
    for p in prime:
        while X % p == 0:
            D[p] += 1
            X //= p
    num = 1
    for k, v in D.items():
        num *= v + 1
        
    for i in range(2, 32):
        for j, cnt in L[i]:
            D[j] += cnt
        num2 = 1
        for k, v in D.items():
            num2 *= v + 1
        if num2 == num * 2:
            print(i * XX)
            break
        for j, cnt in L[i]:
            D[j] -= cnt
0