結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-01 18:11:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-07-08 00:47:21
合計ジャッジ時間 11,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,028 ms
78,976 KB
testcase_01 AC 358 ms
78,720 KB
testcase_02 AC 361 ms
78,976 KB
testcase_03 AC 368 ms
78,592 KB
testcase_04 AC 387 ms
78,592 KB
testcase_05 AC 376 ms
79,488 KB
testcase_06 AC 378 ms
78,976 KB
testcase_07 AC 378 ms
78,976 KB
testcase_08 AC 374 ms
78,848 KB
testcase_09 AC 378 ms
78,720 KB
testcase_10 AC 206 ms
77,824 KB
testcase_11 AC 218 ms
78,592 KB
testcase_12 AC 220 ms
78,720 KB
testcase_13 AC 205 ms
78,208 KB
testcase_14 AC 210 ms
78,464 KB
testcase_15 AC 216 ms
78,336 KB
testcase_16 AC 218 ms
78,592 KB
testcase_17 AC 219 ms
78,208 KB
testcase_18 AC 226 ms
79,104 KB
testcase_19 AC 73 ms
69,120 KB
testcase_20 AC 78 ms
70,016 KB
testcase_21 AC 79 ms
70,912 KB
testcase_22 AC 75 ms
69,888 KB
testcase_23 AC 77 ms
71,168 KB
testcase_24 AC 73 ms
69,632 KB
testcase_25 AC 71 ms
69,760 KB
testcase_26 AC 76 ms
69,760 KB
testcase_27 AC 78 ms
70,400 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 41 ms
52,096 KB
testcase_30 AC 41 ms
52,608 KB
testcase_31 AC 40 ms
52,224 KB
testcase_32 AC 40 ms
52,480 KB
testcase_33 AC 41 ms
51,968 KB
testcase_34 AC 40 ms
52,864 KB
testcase_35 AC 41 ms
52,480 KB
testcase_36 AC 40 ms
52,480 KB
testcase_37 AC 41 ms
52,480 KB
testcase_38 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return(ass)

P = sieve(35)

t = int(input())
for _ in range(t):
    x = int(input())
    ans = -1
    cnt1 = [0]*len(P)
    y = x
    for j, p in enumerate(P):
        while y%p == 0:
            cnt1[j] += 1
            y //= p
    c1 = 1
    for c in cnt1:
        c1 *= (c+1)
    for i in range(2, 32):
        cnt2 = [0]*len(P)
        z = i
        for j, p in enumerate(P):
            while z%p == 0:
                cnt2[j] += 1
                z //= p
        c2 = 1
        for j, c in enumerate(cnt2):
            c2 *= (cnt1[j]+c+1)
        if c2%c1 == 0 and c2//c1 == 2:
            ans = i*x
            break
    print(ans)
0