結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 806 ms
76,448 KB
testcase_02 AC 805 ms
76,288 KB
testcase_03 AC 803 ms
76,416 KB
testcase_04 AC 807 ms
77,184 KB
testcase_05 AC 801 ms
76,288 KB
testcase_06 AC 806 ms
76,288 KB
testcase_07 AC 801 ms
76,928 KB
testcase_08 AC 804 ms
76,552 KB
testcase_09 AC 791 ms
76,648 KB
testcase_10 AC 437 ms
76,288 KB
testcase_11 AC 438 ms
76,160 KB
testcase_12 AC 440 ms
76,416 KB
testcase_13 AC 473 ms
76,416 KB
testcase_14 AC 433 ms
76,544 KB
testcase_15 AC 439 ms
76,416 KB
testcase_16 AC 432 ms
76,672 KB
testcase_17 AC 441 ms
76,560 KB
testcase_18 AC 440 ms
76,488 KB
testcase_19 AC 85 ms
76,416 KB
testcase_20 AC 79 ms
74,624 KB
testcase_21 AC 83 ms
76,544 KB
testcase_22 AC 87 ms
76,544 KB
testcase_23 AC 78 ms
75,520 KB
testcase_24 AC 85 ms
76,672 KB
testcase_25 AC 74 ms
73,472 KB
testcase_26 AC 82 ms
76,416 KB
testcase_27 AC 81 ms
74,496 KB
testcase_28 AC 38 ms
51,840 KB
testcase_29 AC 38 ms
51,840 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 38 ms
51,968 KB
testcase_34 AC 38 ms
51,712 KB
testcase_35 AC 37 ms
51,968 KB
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 38 ms
51,840 KB
testcase_38 AC 39 ms
51,968 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
    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
    return count

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