結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー tassei903tassei903
提出日時 2021-10-30 10:50:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,783 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 89,664 KB
最終ジャッジ日時 2024-10-07 13:31:16
合計ジャッジ時間 18,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,783 ms
89,664 KB
testcase_01 AC 898 ms
87,652 KB
testcase_02 AC 900 ms
87,288 KB
testcase_03 AC 823 ms
87,296 KB
testcase_04 AC 848 ms
86,016 KB
testcase_05 AC 858 ms
87,404 KB
testcase_06 AC 786 ms
86,784 KB
testcase_07 AC 913 ms
87,168 KB
testcase_08 AC 881 ms
87,680 KB
testcase_09 AC 847 ms
86,016 KB
testcase_10 AC 239 ms
79,616 KB
testcase_11 AC 231 ms
78,848 KB
testcase_12 AC 219 ms
78,720 KB
testcase_13 AC 235 ms
78,592 KB
testcase_14 AC 229 ms
78,208 KB
testcase_15 AC 230 ms
79,796 KB
testcase_16 AC 230 ms
78,408 KB
testcase_17 AC 221 ms
78,456 KB
testcase_18 AC 222 ms
78,592 KB
testcase_19 AC 61 ms
67,840 KB
testcase_20 AC 56 ms
65,920 KB
testcase_21 AC 62 ms
67,840 KB
testcase_22 AC 55 ms
66,048 KB
testcase_23 AC 62 ms
65,152 KB
testcase_24 AC 60 ms
67,584 KB
testcase_25 AC 63 ms
68,096 KB
testcase_26 AC 68 ms
70,912 KB
testcase_27 AC 61 ms
67,712 KB
testcase_28 AC 36 ms
52,480 KB
testcase_29 AC 35 ms
52,480 KB
testcase_30 AC 35 ms
52,144 KB
testcase_31 AC 35 ms
51,840 KB
testcase_32 AC 35 ms
52,352 KB
testcase_33 AC 34 ms
52,352 KB
testcase_34 AC 35 ms
52,352 KB
testcase_35 AC 33 ms
52,736 KB
testcase_36 AC 35 ms
52,736 KB
testcase_37 AC 35 ms
52,096 KB
testcase_38 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################



pl = [2,3,5,7,11,13,17,19,23,29,31]
    


def f(x,y):
    r = 0
    while x>0:
        if x%y:
            break
        x//=y
        r+=1
    return r

def saiki(x, s, r):
    global S, ans
    #print(x,s,r)
    if s==S*2:
        #print(x,s,r)
        ans = min(ans, r)
    elif s>S*2:
        return 0
    t = 1
    if x>=len(z):
        return 0
    while s<=S*2 and r<=ans:
        saiki(x+1, s, r)
        s = s*(z[x][2]+t+1)//(z[x][2]+t)
        r *= z[x][1]
        t+=1
        
    

T = ni()
for i in range(T):
    x = ni()
    ans = 10**15
    z = []
    for t,j in enumerate(pl):
        ff = f(x,j)
        if ff>0:
            z.append((t, j, ff))
        if ff==0:
            mp = j
            mt = t
            ans = j
            break
    S = 1
    for i in z:
        S*=i[2]+1
    saiki(0, S, 1)
    print(x*ans)
0