結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー horitaka1999horitaka1999
提出日時 2021-07-23 00:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,395 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,624 KB
最終ジャッジ日時 2024-10-03 02:54:21
合計ジャッジ時間 31,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,367 ms
80,300 KB
testcase_01 AC 1,350 ms
80,272 KB
testcase_02 AC 1,351 ms
80,144 KB
testcase_03 AC 1,345 ms
80,144 KB
testcase_04 AC 1,349 ms
80,292 KB
testcase_05 AC 1,340 ms
80,368 KB
testcase_06 AC 1,368 ms
80,268 KB
testcase_07 AC 1,395 ms
80,260 KB
testcase_08 AC 1,350 ms
80,120 KB
testcase_09 AC 1,375 ms
80,268 KB
testcase_10 AC 1,307 ms
80,456 KB
testcase_11 AC 1,317 ms
80,264 KB
testcase_12 AC 1,362 ms
80,092 KB
testcase_13 AC 1,342 ms
80,240 KB
testcase_14 AC 1,374 ms
80,624 KB
testcase_15 AC 1,362 ms
80,524 KB
testcase_16 AC 1,349 ms
80,364 KB
testcase_17 AC 1,342 ms
80,496 KB
testcase_18 AC 1,346 ms
80,624 KB
testcase_19 AC 106 ms
76,732 KB
testcase_20 AC 106 ms
76,928 KB
testcase_21 AC 109 ms
76,800 KB
testcase_22 AC 105 ms
76,544 KB
testcase_23 AC 109 ms
76,712 KB
testcase_24 AC 110 ms
76,760 KB
testcase_25 AC 118 ms
76,544 KB
testcase_26 AC 105 ms
76,952 KB
testcase_27 AC 104 ms
77,144 KB
testcase_28 AC 43 ms
59,904 KB
testcase_29 AC 40 ms
53,120 KB
testcase_30 AC 44 ms
60,024 KB
testcase_31 AC 44 ms
59,776 KB
testcase_32 AC 44 ms
59,904 KB
testcase_33 AC 44 ms
59,904 KB
testcase_34 AC 45 ms
60,160 KB
testcase_35 AC 46 ms
59,904 KB
testcase_36 AC 45 ms
60,288 KB
testcase_37 AC 44 ms
59,520 KB
testcase_38 AC 44 ms
60,032 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 = i
        yaku2 = 1
        for p in primes:
            cnt = 0
            while tmp % p == 0:
                tmp = tmp //p
                cnt += 1
            yaku2 *= (dic[p]+1+cnt)
        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