結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー horitaka1999horitaka1999
提出日時 2021-07-23 00:44:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 796 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 82,208 KB
最終ジャッジ日時 2024-07-17 22:02:20
合計ジャッジ時間 41,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,482 ms
82,208 KB
testcase_11 AC 1,634 ms
81,392 KB
testcase_12 AC 1,632 ms
82,028 KB
testcase_13 AC 1,474 ms
80,448 KB
testcase_14 AC 1,475 ms
80,452 KB
testcase_15 AC 1,471 ms
80,444 KB
testcase_16 AC 1,486 ms
80,568 KB
testcase_17 AC 1,465 ms
80,500 KB
testcase_18 AC 1,475 ms
80,824 KB
testcase_19 AC 112 ms
77,136 KB
testcase_20 AC 108 ms
76,872 KB
testcase_21 AC 109 ms
76,876 KB
testcase_22 AC 113 ms
77,068 KB
testcase_23 AC 112 ms
76,812 KB
testcase_24 AC 108 ms
77,152 KB
testcase_25 AC 115 ms
76,764 KB
testcase_26 AC 115 ms
76,948 KB
testcase_27 AC 113 ms
77,060 KB
testcase_28 AC 46 ms
60,676 KB
testcase_29 AC 45 ms
59,276 KB
testcase_30 AC 49 ms
62,036 KB
testcase_31 AC 49 ms
62,092 KB
testcase_32 AC 48 ms
61,204 KB
testcase_33 AC 49 ms
62,724 KB
testcase_34 AC 47 ms
61,528 KB
testcase_35 AC 47 ms
60,980 KB
testcase_36 AC 50 ms
61,408 KB
testcase_37 AC 50 ms
62,444 KB
testcase_38 AC 48 ms
61,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

primes = [2,3,5,7,11,13,17,19,23,29,31]
from collections import defaultdict
def f(x):
    tmp = x
    yaku1 = 1
    dic = defaultdict(int)
    coordinate = []
    for p in primes:
        cnt = 0
        while tmp % p == 0:
            tmp = tmp//p
            cnt += 1
        dic[p] = cnt
        yaku1 *= (cnt+1)
        coordinate.append(p**(cnt+1))
    for i in range(2,32):
        tmp = x * i
        yaku2 = 1
        for p in primes:
            cnt = 0
            while tmp % p == 0:
                tmp = tmp //p
                cnt += 1
            yaku2 *= (cnt+1)
        if 2 * yaku1 == yaku2:
            coordinate.append(i)


    return min(coordinate) * x 
T = int(input())
store = []
for _ in range(T):
    x = int(input())
    store.append(x)
for x in store:
    print(f(x))
0