結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 14:19:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,167 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,192 KB
最終ジャッジ日時 2024-09-30 04:55:55
合計ジャッジ時間 19,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 750 ms
76,220 KB
testcase_02 AC 741 ms
76,420 KB
testcase_03 AC 732 ms
76,624 KB
testcase_04 AC 747 ms
76,516 KB
testcase_05 AC 758 ms
76,120 KB
testcase_06 AC 744 ms
76,620 KB
testcase_07 AC 743 ms
76,540 KB
testcase_08 AC 743 ms
76,600 KB
testcase_09 AC 723 ms
76,536 KB
testcase_10 AC 433 ms
77,388 KB
testcase_11 AC 442 ms
77,024 KB
testcase_12 AC 432 ms
77,176 KB
testcase_13 AC 482 ms
77,304 KB
testcase_14 AC 439 ms
77,028 KB
testcase_15 AC 439 ms
76,984 KB
testcase_16 AC 427 ms
77,496 KB
testcase_17 AC 439 ms
77,408 KB
testcase_18 AC 436 ms
77,068 KB
testcase_19 AC 74 ms
71,552 KB
testcase_20 AC 74 ms
71,840 KB
testcase_21 AC 74 ms
72,924 KB
testcase_22 AC 75 ms
72,044 KB
testcase_23 AC 71 ms
70,944 KB
testcase_24 AC 77 ms
72,896 KB
testcase_25 AC 75 ms
72,448 KB
testcase_26 AC 72 ms
72,640 KB
testcase_27 AC 72 ms
71,868 KB
testcase_28 AC 37 ms
52,604 KB
testcase_29 AC 39 ms
52,560 KB
testcase_30 AC 38 ms
52,120 KB
testcase_31 AC 39 ms
52,008 KB
testcase_32 AC 39 ms
52,276 KB
testcase_33 AC 38 ms
52,692 KB
testcase_34 AC 38 ms
52,152 KB
testcase_35 AC 39 ms
51,872 KB
testcase_36 AC 39 ms
52,692 KB
testcase_37 AC 39 ms
53,280 KB
testcase_38 AC 39 ms
52,208 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 prod

T = int(input())
for t in range(T):
    X = int(input())
    original_count = count_low_primefactors(X)
    
    for k in range(2, 38):
        temp_count = count_low_primefactors(X*k)
        if temp_count == original_count*2:
            print(X*k)
            break
0