結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー 👑 rin204rin204
提出日時 2022-01-26 16:52:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 912 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 77,352 KB
最終ジャッジ日時 2024-06-02 11:19:38
合計ジャッジ時間 12,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
76,596 KB
testcase_01 AC 435 ms
77,020 KB
testcase_02 AC 443 ms
76,780 KB
testcase_03 AC 429 ms
76,992 KB
testcase_04 AC 433 ms
77,108 KB
testcase_05 AC 431 ms
76,580 KB
testcase_06 AC 442 ms
77,184 KB
testcase_07 AC 452 ms
76,744 KB
testcase_08 AC 450 ms
76,608 KB
testcase_09 AC 441 ms
76,456 KB
testcase_10 AC 341 ms
77,280 KB
testcase_11 AC 353 ms
77,108 KB
testcase_12 AC 337 ms
77,284 KB
testcase_13 AC 343 ms
77,220 KB
testcase_14 AC 349 ms
77,236 KB
testcase_15 AC 346 ms
77,200 KB
testcase_16 AC 348 ms
77,352 KB
testcase_17 AC 358 ms
77,268 KB
testcase_18 AC 349 ms
77,072 KB
testcase_19 AC 68 ms
71,724 KB
testcase_20 AC 62 ms
71,552 KB
testcase_21 AC 67 ms
73,328 KB
testcase_22 AC 63 ms
72,280 KB
testcase_23 AC 63 ms
71,088 KB
testcase_24 AC 63 ms
71,460 KB
testcase_25 AC 66 ms
71,672 KB
testcase_26 AC 65 ms
71,004 KB
testcase_27 AC 69 ms
72,424 KB
testcase_28 AC 36 ms
52,260 KB
testcase_29 AC 33 ms
53,300 KB
testcase_30 AC 33 ms
52,400 KB
testcase_31 AC 33 ms
51,880 KB
testcase_32 AC 33 ms
53,084 KB
testcase_33 AC 34 ms
52,160 KB
testcase_34 AC 34 ms
52,280 KB
testcase_35 AC 33 ms
53,096 KB
testcase_36 AC 33 ms
53,200 KB
testcase_37 AC 33 ms
52,408 KB
testcase_38 AC 33 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

prime = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]
def solve():
    x = int(input())
    C = [0] * 32
    X = x
    for p in prime:
        cnt = 0
        while X % p == 0:
            X //= p
            cnt += 1
        C[p] = cnt
    for i in range(2, 32):
        if x % i != 0:
            print(x * i)
            return
        a = 1
        b = 1
        X = x
        I = i
        for p in prime:
            if I % p == 0:
                cnt = C[p]
                b *= cnt + 1
                while I % p == 0:
                    I //= p
                    cnt += 1
                a *= cnt + 1
        if a == 2 * b:
            print(x * i)
            return
            
    
for _ in range(int(input())):
    solve()
0