結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー tamatotamato
提出日時 2021-07-21 21:51:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 77,264 KB
最終ジャッジ日時 2024-10-03 02:26:04
合計ジャッジ時間 7,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
76,992 KB
testcase_01 AC 196 ms
77,024 KB
testcase_02 AC 195 ms
76,672 KB
testcase_03 AC 187 ms
76,824 KB
testcase_04 AC 191 ms
76,520 KB
testcase_05 AC 212 ms
77,264 KB
testcase_06 AC 200 ms
76,288 KB
testcase_07 AC 183 ms
76,496 KB
testcase_08 AC 188 ms
76,672 KB
testcase_09 AC 198 ms
76,288 KB
testcase_10 AC 130 ms
76,672 KB
testcase_11 AC 134 ms
76,420 KB
testcase_12 AC 128 ms
76,672 KB
testcase_13 AC 137 ms
76,732 KB
testcase_14 AC 145 ms
76,800 KB
testcase_15 AC 136 ms
76,544 KB
testcase_16 AC 132 ms
76,700 KB
testcase_17 AC 133 ms
76,688 KB
testcase_18 AC 137 ms
76,664 KB
testcase_19 AC 64 ms
66,560 KB
testcase_20 AC 65 ms
65,664 KB
testcase_21 AC 63 ms
65,536 KB
testcase_22 AC 59 ms
62,720 KB
testcase_23 AC 57 ms
62,336 KB
testcase_24 AC 58 ms
63,616 KB
testcase_25 AC 63 ms
65,792 KB
testcase_26 AC 60 ms
65,152 KB
testcase_27 AC 65 ms
65,920 KB
testcase_28 AC 41 ms
52,608 KB
testcase_29 AC 42 ms
52,096 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 39 ms
52,352 KB
testcase_33 AC 40 ms
51,968 KB
testcase_34 AC 39 ms
52,608 KB
testcase_35 AC 40 ms
52,480 KB
testcase_36 AC 40 ms
52,352 KB
testcase_37 AC 39 ms
52,608 KB
testcase_38 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def PrimeDecomposition(N):
        ret = {}
        n = int(N ** 0.5)
        for d in range(2, n + 1):
            while N % d == 0:
                if d not in ret:
                    ret[d] = 1
                else:
                    ret[d] += 1
                N //= d
            if N == 1:
                break
        if N != 1:
            ret[N] = 1
        return ret

    D = [None for _ in range(101)]
    for i in range(1, 101):
        D[i] = PrimeDecomposition(i)

    for _ in range(int(input())):
        X = int(input())
        for i in range(2, 101):
            P = D[i]
            upper = lower = 1
            for p in P:
                d = P[p]
                e = 0
                XX = X
                while XX % p == 0:
                    e += 1
                    XX //= p
                upper *= d + e + 1
                lower *= e + 1
            if upper == lower * 2:
                print(i * X)
                break


if __name__ == '__main__':
    main()
0