結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー convexineqconvexineq
提出日時 2024-03-04 18:14:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 339 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 96,156 KB
最終ジャッジ日時 2024-09-29 17:28:41
合計ジャッジ時間 14,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 507 ms
95,632 KB
testcase_02 AC 510 ms
95,528 KB
testcase_03 AC 496 ms
96,156 KB
testcase_04 AC 508 ms
95,124 KB
testcase_05 AC 498 ms
95,456 KB
testcase_06 AC 509 ms
95,220 KB
testcase_07 AC 507 ms
95,124 KB
testcase_08 AC 511 ms
95,492 KB
testcase_09 AC 500 ms
95,076 KB
testcase_10 AC 223 ms
92,956 KB
testcase_11 AC 240 ms
95,256 KB
testcase_12 AC 221 ms
94,896 KB
testcase_13 AC 256 ms
94,992 KB
testcase_14 AC 236 ms
95,712 KB
testcase_15 AC 233 ms
95,084 KB
testcase_16 AC 230 ms
95,384 KB
testcase_17 AC 230 ms
95,104 KB
testcase_18 AC 258 ms
94,208 KB
testcase_19 AC 53 ms
64,640 KB
testcase_20 AC 52 ms
64,768 KB
testcase_21 AC 51 ms
64,768 KB
testcase_22 AC 56 ms
66,304 KB
testcase_23 AC 53 ms
64,820 KB
testcase_24 AC 54 ms
67,104 KB
testcase_25 AC 51 ms
65,272 KB
testcase_26 AC 53 ms
65,864 KB
testcase_27 AC 55 ms
66,536 KB
testcase_28 AC 36 ms
52,484 KB
testcase_29 AC 35 ms
52,428 KB
testcase_30 AC 35 ms
52,160 KB
testcase_31 AC 36 ms
53,572 KB
testcase_32 AC 35 ms
52,064 KB
testcase_33 AC 36 ms
52,956 KB
testcase_34 AC 36 ms
52,748 KB
testcase_35 AC 35 ms
53,076 KB
testcase_36 AC 35 ms
53,072 KB
testcase_37 AC 36 ms
52,640 KB
testcase_38 AC 35 ms
52,704 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]
t,*a = map(int,open(0).read().split())
for x in a:
    k = get(x)
    for r in range(2,32):
        if get(x*r) == 2*k:
            print(x*r)
            break
0