結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー convexineqconvexineq
提出日時 2024-03-04 18:22:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 95,820 KB
最終ジャッジ日時 2024-09-29 17:30:12
合計ジャッジ時間 8,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
95,284 KB
testcase_01 AC 219 ms
95,564 KB
testcase_02 AC 222 ms
95,612 KB
testcase_03 AC 220 ms
95,752 KB
testcase_04 AC 219 ms
95,380 KB
testcase_05 AC 225 ms
95,500 KB
testcase_06 AC 228 ms
95,412 KB
testcase_07 AC 227 ms
95,756 KB
testcase_08 AC 224 ms
95,820 KB
testcase_09 AC 222 ms
95,200 KB
testcase_10 AC 166 ms
93,324 KB
testcase_11 AC 171 ms
95,564 KB
testcase_12 AC 178 ms
95,652 KB
testcase_13 AC 170 ms
95,152 KB
testcase_14 AC 165 ms
95,776 KB
testcase_15 AC 169 ms
95,480 KB
testcase_16 AC 169 ms
95,112 KB
testcase_17 AC 164 ms
95,412 KB
testcase_18 AC 175 ms
95,724 KB
testcase_19 AC 62 ms
71,184 KB
testcase_20 AC 63 ms
68,264 KB
testcase_21 AC 58 ms
68,332 KB
testcase_22 AC 62 ms
70,340 KB
testcase_23 AC 61 ms
70,224 KB
testcase_24 AC 62 ms
69,160 KB
testcase_25 AC 60 ms
68,776 KB
testcase_26 AC 58 ms
69,004 KB
testcase_27 AC 62 ms
69,892 KB
testcase_28 AC 35 ms
53,084 KB
testcase_29 AC 36 ms
53,160 KB
testcase_30 AC 36 ms
53,476 KB
testcase_31 AC 36 ms
52,940 KB
testcase_32 AC 36 ms
52,748 KB
testcase_33 AC 36 ms
52,348 KB
testcase_34 AC 36 ms
52,336 KB
testcase_35 AC 36 ms
52,448 KB
testcase_36 AC 36 ms
52,572 KB
testcase_37 AC 36 ms
52,340 KB
testcase_38 AC 37 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get(x):
    r = []
    for p in ps:
        c = 0
        while x%p==0:
            x //= p
            c += 1
        r.append(c)
    return r

ps = [2,3,5,7,11,13,17,19,23,29,31]
t,*a = map(int,open(0).read().split())
plst =[[0]*11] + [get(i) for i in range(1,32)]
for x in a:
    lst = get(x)
    yx = 1
    for i in lst: yx *= i+1
    for r in range(2,32):
        yr = 1
        for i,j in zip(lst,plst[r]):
    	    yr *= i+j+1
        if yr == 2*yx:
            print(x*r)
            break
0