結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー hir355hir355
提出日時 2021-07-21 22:10:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 963 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 77,920 KB
最終ジャッジ日時 2024-07-17 18:50:17
合計ジャッジ時間 9,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
76,400 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 288 ms
77,104 KB
testcase_11 AC 302 ms
77,400 KB
testcase_12 AC 327 ms
77,920 KB
testcase_13 AC 351 ms
77,648 KB
testcase_14 AC 315 ms
77,060 KB
testcase_15 AC 302 ms
77,508 KB
testcase_16 AC 298 ms
77,336 KB
testcase_17 AC 317 ms
77,260 KB
testcase_18 AC 301 ms
77,328 KB
testcase_19 AC 61 ms
70,248 KB
testcase_20 AC 63 ms
70,060 KB
testcase_21 AC 72 ms
75,472 KB
testcase_22 AC 68 ms
69,168 KB
testcase_23 AC 59 ms
67,952 KB
testcase_24 AC 59 ms
68,368 KB
testcase_25 AC 75 ms
75,320 KB
testcase_26 AC 59 ms
68,536 KB
testcase_27 AC 69 ms
73,876 KB
testcase_28 AC 34 ms
53,264 KB
testcase_29 AC 34 ms
53,268 KB
testcase_30 AC 34 ms
53,240 KB
testcase_31 AC 35 ms
52,908 KB
testcase_32 AC 33 ms
52,256 KB
testcase_33 AC 33 ms
52,816 KB
testcase_34 AC 33 ms
52,584 KB
testcase_35 AC 31 ms
52,752 KB
testcase_36 AC 33 ms
53,132 KB
testcase_37 AC 32 ms
53,616 KB
testcase_38 AC 35 ms
53,144 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)]
    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 % p > 0:
            break
    print(ans)
0