結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー hirakuhiraku
提出日時 2022-02-12 23:06:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,054 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 85,240 KB
最終ジャッジ日時 2024-06-29 02:22:40
合計ジャッジ時間 12,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
85,240 KB
testcase_01 AC 607 ms
77,852 KB
testcase_02 AC 529 ms
77,508 KB
testcase_03 AC 546 ms
77,856 KB
testcase_04 AC 581 ms
77,644 KB
testcase_05 AC 566 ms
77,400 KB
testcase_06 AC 566 ms
77,396 KB
testcase_07 AC 550 ms
77,496 KB
testcase_08 AC 553 ms
77,556 KB
testcase_09 AC 604 ms
77,420 KB
testcase_10 AC 484 ms
78,488 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1611
# No.1611 Minimum Multiple with Double Divisors

# 素因数分解と約数の個数

# X = (p1 ** m1) * (p2 ** m2) * ... * (pk ** mk)
# と素因数分解されたとします. このとき, の正の約数の個数は 
# (m1 + 1)(m2 + 1)...(mk + 1) です.


from collections import defaultdict


def prime_factorize(n):
    # 素因数分解 defaultdict
    a = defaultdict(int)
    while n % 2 == 0:
        a[2] += 1
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a[f] += 1
            n //= f
        else:
            f += 2
    if n != 1:
        a[n] += 1
    return a

t = int(input())
for _ in range(t):
    x = int(input())
    p = prime_factorize(x)
    cnt = 1
    for i in p.values():
        cnt *= (i + 1)
    for i in range(2, 32):
        ps = prime_factorize(i)
        dnt = cnt
        for k, v in ps.items():
            dnt = dnt // (p[k] + 1) * (p[k] + v + 1)
        if dnt == cnt * 2:
            print(i * x)
            break
        
        
0