結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー hir355hir355
提出日時 2021-07-21 22:14:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-07-17 19:02:02
合計ジャッジ時間 9,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
76,340 KB
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 313 ms
77,440 KB
testcase_11 AC 310 ms
76,964 KB
testcase_12 AC 316 ms
76,860 KB
testcase_13 AC 356 ms
77,836 KB
testcase_14 AC 330 ms
77,300 KB
testcase_15 AC 299 ms
77,364 KB
testcase_16 AC 299 ms
76,800 KB
testcase_17 AC 309 ms
76,960 KB
testcase_18 AC 323 ms
78,080 KB
testcase_19 AC 71 ms
73,344 KB
testcase_20 AC 68 ms
72,576 KB
testcase_21 AC 70 ms
74,496 KB
testcase_22 AC 80 ms
77,184 KB
testcase_23 AC 64 ms
69,176 KB
testcase_24 AC 83 ms
76,928 KB
testcase_25 AC 67 ms
73,676 KB
testcase_26 AC 65 ms
70,912 KB
testcase_27 AC 65 ms
73,088 KB
testcase_28 AC 31 ms
52,480 KB
testcase_29 AC 31 ms
52,480 KB
testcase_30 AC 32 ms
51,968 KB
testcase_31 AC 31 ms
51,968 KB
testcase_32 AC 30 ms
52,736 KB
testcase_33 AC 31 ms
52,224 KB
testcase_34 AC 32 ms
52,864 KB
testcase_35 AC 34 ms
52,736 KB
testcase_36 AC 33 ms
52,224 KB
testcase_37 AC 32 ms
52,480 KB
testcase_38 AC 32 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n**0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return [i for i in range(n + 1) if is_prime[i]]

pr = primes(200)
t = int(input())
for _ in range(t):
    x = int(input())
    ans = 10 ** 18
    l = [(0, 100000)]
    tmp = 1
    for p in pr:
        cnt = 1
        t = x
        while t % p == 0:
            t //= p
            cnt += 1
        if l[-1][1] > cnt:
            res = x
            l.append((p, cnt))
            for i in range(len(l) - 1, 0, -1):
                if l[i - 1][1] >= cnt * 2:
                    res *= pow(l[i][0], cnt * 2 - l[i][1])
                    break
                else:
                    res *= pow(l[i][0], l[i - 1][1] - l[i][1])
            ans = min(ans, res)
        if x % tmp > 0:
            break
        tmp = p
    print(ans)
0