結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 14:24:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,432 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-30 04:56:44
合計ジャッジ時間 16,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,432 ms
77,696 KB
testcase_01 AC 607 ms
76,416 KB
testcase_02 AC 604 ms
76,416 KB
testcase_03 AC 615 ms
76,416 KB
testcase_04 AC 607 ms
76,428 KB
testcase_05 AC 593 ms
76,552 KB
testcase_06 AC 605 ms
76,420 KB
testcase_07 AC 615 ms
76,432 KB
testcase_08 AC 601 ms
76,288 KB
testcase_09 AC 610 ms
76,932 KB
testcase_10 AC 425 ms
76,556 KB
testcase_11 AC 427 ms
76,416 KB
testcase_12 AC 424 ms
76,420 KB
testcase_13 AC 445 ms
76,672 KB
testcase_14 AC 423 ms
76,544 KB
testcase_15 AC 419 ms
76,416 KB
testcase_16 AC 423 ms
76,416 KB
testcase_17 AC 411 ms
76,416 KB
testcase_18 AC 414 ms
76,416 KB
testcase_19 AC 83 ms
76,544 KB
testcase_20 AC 84 ms
76,416 KB
testcase_21 AC 83 ms
76,416 KB
testcase_22 AC 76 ms
74,624 KB
testcase_23 AC 77 ms
75,136 KB
testcase_24 AC 87 ms
76,416 KB
testcase_25 AC 87 ms
76,416 KB
testcase_26 AC 85 ms
76,488 KB
testcase_27 AC 81 ms
76,544 KB
testcase_28 AC 38 ms
51,968 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 39 ms
51,968 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 AC 38 ms
51,968 KB
testcase_35 AC 38 ms
51,840 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 39 ms
51,968 KB
testcase_38 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 素因数分解し、使っていない素因数を加えるか、または、2**2などを加える、どれが一番小さいか
# TLEした、素因数分解はやめてその素数が何個あるかだけ調べよう
# WAした、加える素因数は複数ということがありうる、たとえば2*3=6
# どの素因数をいくつ加えるかではコンビネーションが難しくなる、37までをかけて約数の個数が2倍になるものを探す、ただしフルの素因数分解はしない

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

def count_low_primefactors(num):
    count = [0]*12
    prod = 1
    for i in range(12):
        p = primes[i]
        c = 0
        while True:
            if num%p == 0:
                c += 1
                num //= p
            else:
                break
        count[i] = c
        prod *= (c+1)
    return count, prod

T = int(input())
for t in range(T):
    X = int(input())
    original, original_count = count_low_primefactors(X)
    
    for k in range(2, 38):
        temp, temp_count = count_low_primefactors(k)
        new = 1
        for i in range(12):
            new *= (1+original[i]+temp[i])
        if new == original_count*2:
            print(X*k)
            break
0