結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー MineMine
提出日時 2021-09-10 14:11:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-06-11 01:54:13
合計ジャッジ時間 12,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 354 ms
77,824 KB
testcase_11 AC 386 ms
78,592 KB
testcase_12 AC 359 ms
77,696 KB
testcase_13 AC 381 ms
77,568 KB
testcase_14 AC 432 ms
78,488 KB
testcase_15 AC 375 ms
77,708 KB
testcase_16 AC 364 ms
77,952 KB
testcase_17 AC 355 ms
77,824 KB
testcase_18 AC 382 ms
78,504 KB
testcase_19 AC 109 ms
77,568 KB
testcase_20 AC 115 ms
77,184 KB
testcase_21 AC 106 ms
77,696 KB
testcase_22 AC 94 ms
76,928 KB
testcase_23 AC 102 ms
77,568 KB
testcase_24 AC 114 ms
77,676 KB
testcase_25 AC 118 ms
77,440 KB
testcase_26 AC 110 ms
77,348 KB
testcase_27 AC 103 ms
77,696 KB
testcase_28 AC 42 ms
53,760 KB
testcase_29 AC 41 ms
54,144 KB
testcase_30 AC 40 ms
54,144 KB
testcase_31 AC 40 ms
54,144 KB
testcase_32 AC 41 ms
54,272 KB
testcase_33 AC 41 ms
54,144 KB
testcase_34 AC 42 ms
54,016 KB
testcase_35 AC 42 ms
54,016 KB
testcase_36 AC 45 ms
53,760 KB
testcase_37 AC 46 ms
54,016 KB
testcase_38 AC 42 ms
53,888 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, 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