結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー MineMine
提出日時 2021-09-10 14:22:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 892 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 78,652 KB
最終ジャッジ日時 2024-06-11 02:10:04
合計ジャッジ時間 12,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
77,248 KB
testcase_01 AC 411 ms
77,216 KB
testcase_02 AC 467 ms
77,540 KB
testcase_03 AC 398 ms
77,584 KB
testcase_04 AC 459 ms
77,476 KB
testcase_05 AC 429 ms
77,516 KB
testcase_06 AC 405 ms
77,384 KB
testcase_07 AC 416 ms
77,304 KB
testcase_08 AC 409 ms
77,460 KB
testcase_09 AC 415 ms
77,304 KB
testcase_10 AC 346 ms
77,524 KB
testcase_11 AC 370 ms
77,256 KB
testcase_12 AC 364 ms
78,324 KB
testcase_13 AC 389 ms
78,596 KB
testcase_14 AC 400 ms
78,652 KB
testcase_15 AC 359 ms
77,424 KB
testcase_16 AC 350 ms
77,372 KB
testcase_17 AC 357 ms
77,844 KB
testcase_18 AC 375 ms
77,752 KB
testcase_19 AC 92 ms
77,444 KB
testcase_20 AC 86 ms
76,924 KB
testcase_21 AC 93 ms
76,904 KB
testcase_22 AC 89 ms
77,304 KB
testcase_23 AC 95 ms
77,648 KB
testcase_24 AC 97 ms
77,376 KB
testcase_25 AC 89 ms
77,208 KB
testcase_26 AC 87 ms
76,936 KB
testcase_27 AC 92 ms
77,184 KB
testcase_28 AC 39 ms
53,992 KB
testcase_29 AC 38 ms
54,664 KB
testcase_30 AC 38 ms
54,704 KB
testcase_31 AC 39 ms
54,704 KB
testcase_32 AC 38 ms
54,752 KB
testcase_33 AC 40 ms
55,392 KB
testcase_34 AC 43 ms
55,640 KB
testcase_35 AC 42 ms
55,528 KB
testcase_36 AC 41 ms
55,864 KB
testcase_37 AC 37 ms
55,500 KB
testcase_38 AC 41 ms
55,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def prime_factorization(n):
    arr = defaultdict(int)
    for i in range(2, int(n**0.5)+1):
        while n % i == 0:
            arr[i] += 1
            n //= i
    if n != 1:
        arr[n] += 1
    return arr


t = int(input())
ans = []
primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]
options = [prime_factorization(i) for i in range(0, 32)]

for i in range(t):
    x = int(input())
    d = defaultdict(int)
    for p in primes:
        temp = x
        while temp % p == 0:
            d[p] += 1
            temp //= p
    for i in range(2, 32):
        xnum = 1
        opnum = 1
        for p in options[i]:
            xnum *= (d[p]+1)
            opnum *= (d[p] + options[i][p] + 1)
        if 2*xnum == opnum:
            break
    print(i*x)
0