結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー ああいいああいい
提出日時 2022-03-05 18:54:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,603 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 90,052 KB
最終ジャッジ日時 2024-07-20 01:02:59
合計ジャッジ時間 20,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,603 ms
88,740 KB
testcase_01 AC 649 ms
88,832 KB
testcase_02 AC 622 ms
88,808 KB
testcase_03 AC 689 ms
88,648 KB
testcase_04 AC 684 ms
88,960 KB
testcase_05 AC 632 ms
88,764 KB
testcase_06 AC 632 ms
88,928 KB
testcase_07 AC 630 ms
88,832 KB
testcase_08 AC 634 ms
89,076 KB
testcase_09 AC 654 ms
88,960 KB
testcase_10 AC 424 ms
89,088 KB
testcase_11 AC 457 ms
88,928 KB
testcase_12 AC 455 ms
89,468 KB
testcase_13 AC 454 ms
88,704 KB
testcase_14 AC 443 ms
89,856 KB
testcase_15 AC 442 ms
89,984 KB
testcase_16 AC 428 ms
89,728 KB
testcase_17 AC 431 ms
90,052 KB
testcase_18 AC 460 ms
88,764 KB
testcase_19 AC 163 ms
88,960 KB
testcase_20 AC 152 ms
89,344 KB
testcase_21 AC 166 ms
89,208 KB
testcase_22 AC 164 ms
88,960 KB
testcase_23 AC 157 ms
89,376 KB
testcase_24 AC 162 ms
88,960 KB
testcase_25 AC 164 ms
88,832 KB
testcase_26 AC 159 ms
88,704 KB
testcase_27 AC 146 ms
88,576 KB
testcase_28 AC 92 ms
79,104 KB
testcase_29 AC 91 ms
79,104 KB
testcase_30 AC 83 ms
79,232 KB
testcase_31 AC 90 ms
79,488 KB
testcase_32 AC 95 ms
79,104 KB
testcase_33 AC 90 ms
79,104 KB
testcase_34 AC 87 ms
78,848 KB
testcase_35 AC 96 ms
79,488 KB
testcase_36 AC 94 ms
79,360 KB
testcase_37 AC 91 ms
78,976 KB
testcase_38 AC 95 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

C = 10 ** 6
dat = [0] * C
prime = []
for i in range(2,C):
    if dat[i] == 0:
        prime.append(i)
        for j in range(2 * i,C,i):
            dat[j] = 1
from collections import defaultdict

for _ in range(T):
    X = int(input())
    d = defaultdict(int)
    P = -1
    u = X
    for p in prime:
        if X % p != 0:
            P = p
            break
        while X % p == 0:
            d[p] += 1
            X //= p
    num = 1
    for v in d.values():
        num *= (v + 1)
    for j in range(2,p+1):
        div = 1
        t = j
        for k in prime:
            if k > p:break
            count = 0
            while j % k == 0:
                count += 1
                j //= k
            div *= (d[k] + 1 + count)
        if div == 2 * num:
            print(t * u)
            break
0