結果
| 問題 | No.1611 Minimum Multiple with Double Divisors | 
| コンテスト | |
| ユーザー |  rlangevin | 
| 提出日時 | 2023-04-20 23:10:39 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 898 bytes | 
| コンパイル時間 | 323 ms | 
| コンパイル使用メモリ | 82,292 KB | 
| 実行使用メモリ | 91,168 KB | 
| 最終ジャッジ日時 | 2024-10-15 17:48:08 | 
| 合計ジャッジ時間 | 8,876 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | -- * 2 | 
| other | TLE * 1 -- * 36 | 
ソースコード
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())
for _ in range(T):
    X = int(readline())
    L = factorization(X)
    D = defaultdict(int)
    for i, cnt in L:
        D[i] += cnt
    num = 1
    for k, v in D.items():
        num *= v + 1
        
    for i in range(2, 32):
        L = factorization(i)
        num2 = 1
        for j, cnt in L:
            D[j] += cnt
        for k, v in D.items():
            num2 *= v + 1
        if num2 == num * 2:
            print(i * X)
            break
        for j, cnt in L:
            D[j] -= cnt
            
            
            
        