結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー 👑 rin204rin204
提出日時 2022-01-26 16:49:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 615 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-06-02 11:13:41
合計ジャッジ時間 18,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 671 ms
76,800 KB
testcase_02 AC 667 ms
76,800 KB
testcase_03 AC 683 ms
77,056 KB
testcase_04 AC 692 ms
76,800 KB
testcase_05 AC 677 ms
77,056 KB
testcase_06 AC 687 ms
76,928 KB
testcase_07 AC 671 ms
76,672 KB
testcase_08 AC 669 ms
76,800 KB
testcase_09 AC 681 ms
77,056 KB
testcase_10 AC 351 ms
77,532 KB
testcase_11 AC 355 ms
77,440 KB
testcase_12 AC 355 ms
77,416 KB
testcase_13 AC 361 ms
77,312 KB
testcase_14 AC 369 ms
77,440 KB
testcase_15 AC 364 ms
77,312 KB
testcase_16 AC 369 ms
77,184 KB
testcase_17 AC 346 ms
77,312 KB
testcase_18 AC 364 ms
77,568 KB
testcase_19 AC 79 ms
70,144 KB
testcase_20 AC 82 ms
70,400 KB
testcase_21 AC 82 ms
70,144 KB
testcase_22 AC 77 ms
68,480 KB
testcase_23 AC 81 ms
69,632 KB
testcase_24 AC 85 ms
70,656 KB
testcase_25 AC 82 ms
69,760 KB
testcase_26 AC 82 ms
70,528 KB
testcase_27 AC 82 ms
70,272 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 38 ms
51,584 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 39 ms
51,840 KB
testcase_35 AC 39 ms
51,840 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 40 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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