結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー ああいいああいい
提出日時 2022-03-05 18:42:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,400 KB
最終ジャッジ日時 2024-07-20 00:49:55
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
88,448 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 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 441 ms
89,084 KB
testcase_14 AC 411 ms
88,320 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 439 ms
88,832 KB
testcase_19 AC 116 ms
85,888 KB
testcase_20 AC 118 ms
86,016 KB
testcase_21 AC 133 ms
89,400 KB
testcase_22 AC 113 ms
86,016 KB
testcase_23 AC 119 ms
85,120 KB
testcase_24 AC 114 ms
85,280 KB
testcase_25 AC 128 ms
88,744 KB
testcase_26 AC 110 ms
85,376 KB
testcase_27 AC 120 ms
88,960 KB
testcase_28 AC 86 ms
77,696 KB
testcase_29 AC 88 ms
77,184 KB
testcase_30 AC 90 ms
77,440 KB
testcase_31 AC 93 ms
77,764 KB
testcase_32 AC 87 ms
77,056 KB
testcase_33 AC 84 ms
77,312 KB
testcase_34 AC 85 ms
77,056 KB
testcase_35 AC 84 ms
77,312 KB
testcase_36 AC 88 ms
77,184 KB
testcase_37 AC 85 ms
76,928 KB
testcase_38 AC 84 ms
77,568 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
for _ in range(T):
    X = int(input())
    u = X
    P = -1
    ans = 1 << 30
    a = None
    b = None
    for p in prime:
        if X % p != 0:
            P = p
            break
        else:
            count = 0
            while X % p == 0:
                count += 1
                X //= p
            if pow(p,count + 1) < ans:
                ans = p ** (count+1)
            if count == 1 and a is None:
                a = p
            if count == 2 and b is None:
                b = p
    if P < ans:
        ans = P
    if a is not None and b is not None:
        if a * b < ans:
            ans = a * b
    print(ans * u)
0