結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー convexineqconvexineq
提出日時 2021-07-23 10:13:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 342 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 95,836 KB
最終ジャッジ日時 2024-10-03 02:53:30
合計ジャッジ時間 15,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 550 ms
95,420 KB
testcase_02 AC 556 ms
95,140 KB
testcase_03 AC 556 ms
95,744 KB
testcase_04 AC 538 ms
94,976 KB
testcase_05 AC 546 ms
95,232 KB
testcase_06 AC 543 ms
95,744 KB
testcase_07 AC 540 ms
94,976 KB
testcase_08 AC 541 ms
95,232 KB
testcase_09 AC 554 ms
95,240 KB
testcase_10 AC 253 ms
93,184 KB
testcase_11 AC 255 ms
95,360 KB
testcase_12 AC 244 ms
94,848 KB
testcase_13 AC 284 ms
94,208 KB
testcase_14 AC 251 ms
94,472 KB
testcase_15 AC 247 ms
95,024 KB
testcase_16 AC 253 ms
95,356 KB
testcase_17 AC 248 ms
95,232 KB
testcase_18 AC 240 ms
95,836 KB
testcase_19 AC 57 ms
64,256 KB
testcase_20 AC 57 ms
64,868 KB
testcase_21 AC 61 ms
65,536 KB
testcase_22 AC 57 ms
64,896 KB
testcase_23 AC 55 ms
64,896 KB
testcase_24 AC 60 ms
65,920 KB
testcase_25 AC 63 ms
65,920 KB
testcase_26 AC 58 ms
65,004 KB
testcase_27 AC 58 ms
64,768 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 39 ms
52,064 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 38 ms
52,352 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 38 ms
51,840 KB
testcase_34 AC 37 ms
51,968 KB
testcase_35 AC 39 ms
51,840 KB
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 38 ms
51,584 KB
testcase_38 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get(x):
    k = 1
    for p in ps:
        c = 1
        while x%p==0:
            x //= p
            c += 1
        k *= c
    return k

ps = [2,3,5,7,11,13,17,19,23,29,31,37]
t,*a = map(int,open(0).read().split())
for x in a:
    k = get(x)
    for r in range(2,40):
        if get(x*r) == 2*k:
            print(x*r)
            break
0