結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー shotoyooshotoyoo
提出日時 2021-07-21 22:19:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,022 bytes
コンパイル時間 1,451 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 115,724 KB
最終ジャッジ日時 2023-09-24 18:25:07
合計ジャッジ時間 18,423 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
114,820 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 438 ms
114,044 KB
testcase_14 AC 423 ms
113,560 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 433 ms
113,708 KB
testcase_19 AC 230 ms
104,140 KB
testcase_20 AC 224 ms
103,864 KB
testcase_21 AC 228 ms
104,048 KB
testcase_22 AC 228 ms
104,000 KB
testcase_23 AC 226 ms
103,784 KB
testcase_24 AC 235 ms
104,032 KB
testcase_25 AC 233 ms
103,692 KB
testcase_26 AC 233 ms
103,960 KB
testcase_27 AC 234 ms
103,944 KB
testcase_28 AC 201 ms
103,008 KB
testcase_29 AC 205 ms
102,784 KB
testcase_30 AC 202 ms
102,996 KB
testcase_31 AC 205 ms
103,128 KB
testcase_32 AC 205 ms
103,100 KB
testcase_33 AC 200 ms
103,032 KB
testcase_34 AC 196 ms
103,128 KB
testcase_35 AC 198 ms
102,820 KB
testcase_36 AC 201 ms
103,016 KB
testcase_37 AC 199 ms
102,796 KB
testcase_38 AC 195 ms
102,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

def hurui(n):
    """線形篩
    pl: 素数のリスト
    mpf: iを割り切る最小の素因数
    """
    pl = []
    mpf = [None]*(n+1)
    for d in range(2,n+1):
        if mpf[d] is None:
            mpf[d] = d
            pl.append(d)
        for p in pl:
            if p*d>n or p>mpf[d]:
                break
            mpf[p*d] = p
    return pl, mpf
from collections import defaultdict
def factor(num):
    d = defaultdict(int)
    if num==1:
        d.update({1:1})
        return d
    while num>1:
        d[mpf[num]] += 1
        num //= mpf[num]
    return d
def fs(num):
    f = factor(num)
    ans = [1]
    for k,v in f.items():
        tmp = []
        for i in range(len(ans)):
            val = 1
            for _ in range(v):
                val *= k
                ans.append(ans[i]*val)
    return ans
def sub(x,p):
    res = 0
    while x%p==0:
        x //= p
        res += 1
    return res

pl, mpf = hurui(10**6)
t = int(input())
ans = []
for i in range(t):
    x = int(input())
    for p in pl:
        if x%p!=0:
            res = p
            break
    else:
        assert 0
    m = 40
    count = [-1]*m # 回数がiの素数の最小
    for i in range(m)[::-1]:
        v = sub(x,pl[i])
        count[v] = pl[i]
#     print(x,count)
    for i in range(1,m):
        if count[i]==-1:
            continue
        res = min(res, pow(count[i], i+1))
    r = 1
    for l in range(1, m):
        if r<l:
            r = l
        if count[l]==-1:
            continue
        while r+1<m and count[r+1]>=0:
            r += 1
        if r>=2*l:
            val = 1
            for i in range(l, 2*l+1):
                assert count[i]>0
                val *= count[i]
            res = min(res, val)
    ans.append(res*x)
write("\n".join(map(str, ans)))
0