結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー FromBooskaFromBooska
提出日時 2023-03-20 15:21:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 2,060 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-09-18 14:06:33
合計ジャッジ時間 12,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 605 ms
77,056 KB
testcase_01 AC 513 ms
77,380 KB
testcase_02 AC 433 ms
78,336 KB
testcase_03 AC 440 ms
77,528 KB
testcase_04 AC 463 ms
78,208 KB
testcase_05 AC 465 ms
77,556 KB
testcase_06 AC 454 ms
77,532 KB
testcase_07 AC 507 ms
77,952 KB
testcase_08 AC 451 ms
78,272 KB
testcase_09 AC 457 ms
77,576 KB
testcase_10 AC 384 ms
78,080 KB
testcase_11 AC 398 ms
78,336 KB
testcase_12 AC 391 ms
78,208 KB
testcase_13 AC 390 ms
78,080 KB
testcase_14 AC 453 ms
78,664 KB
testcase_15 AC 379 ms
78,208 KB
testcase_16 AC 398 ms
78,336 KB
testcase_17 AC 397 ms
78,080 KB
testcase_18 AC 437 ms
78,080 KB
testcase_19 AC 102 ms
77,056 KB
testcase_20 AC 101 ms
77,312 KB
testcase_21 AC 109 ms
77,824 KB
testcase_22 AC 114 ms
77,440 KB
testcase_23 AC 133 ms
77,824 KB
testcase_24 AC 119 ms
77,440 KB
testcase_25 AC 113 ms
77,440 KB
testcase_26 AC 102 ms
77,568 KB
testcase_27 AC 111 ms
77,312 KB
testcase_28 AC 40 ms
53,888 KB
testcase_29 AC 40 ms
53,632 KB
testcase_30 AC 38 ms
53,632 KB
testcase_31 AC 39 ms
53,760 KB
testcase_32 AC 40 ms
54,016 KB
testcase_33 AC 40 ms
54,016 KB
testcase_34 AC 39 ms
54,272 KB
testcase_35 AC 40 ms
54,272 KB
testcase_36 AC 40 ms
53,760 KB
testcase_37 AC 40 ms
53,760 KB
testcase_38 AC 41 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 約数の個数は素因数の乗数+1の積
# ということはその数に存在しない素因数倍であれば約数個数は2倍になる
# たとえば12であれば2と3は素数なので5倍の60のときに約数個数は2倍になる
# 存在しない素因数前に、存在する素因数の乗数+1を2倍にできる場合はそれでもok
# たとえば6=2**1*3**1で、4をかければ2**3となり約数個数は2倍になる
# 2*3*5*7*11*13*17*19*23*29*31 > 10**11なので、ここまでの素因数で存在しないものがあるはず
# 面倒なのは420=2**2*3*5*7, この倍数は6すると2と3の乗数が増えて倍になる
# そうであれば31までで全探索した方が早いか, TLEした
# 31までの素因数だけで数を調べる、それ以上は調べない、素因数分解もしない

# 素因数分解、辞書型
def factorization(n):
    arr = {}
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr[i] = cnt
    if temp!=1:
        arr[temp] = 1
    return arr

from collections import defaultdict

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

div_count_to31 = [{}, {}]
for i in range(2, 32):
    div_count_to31.append(factorization(i))

#print(div_count_to31)

T = int(input())
for i in range(T):
    X = int(input())
    X_copy = X
    X_factors = defaultdict(int)
    for p in small_primes:
        while X%p == 0:
            X_factors[p] += 1
            X //= p
    #print('X_factors', X_factors)
    count = 1
    for key in X_factors.keys():
        count *= X_factors[key]+1

    for j in range(2, 32):
        count2 = count
        for key2 in div_count_to31[j].keys():
            count2 //= X_factors[key2]+1
            count2 *= X_factors[key2]+div_count_to31[j][key2]+1
            
        #print('X_copy', X_copy, 'j', j, 'count', count, 'count2', count2)
        if count2 == count*2:
            print(X_copy*j)
            break
0