結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー AEnAEn
提出日時 2022-11-22 01:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 78,816 KB
最終ジャッジ日時 2024-09-22 13:41:41
合計ジャッジ時間 14,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 758 ms
77,168 KB
testcase_01 AC 504 ms
77,452 KB
testcase_02 AC 520 ms
78,336 KB
testcase_03 AC 506 ms
77,900 KB
testcase_04 AC 504 ms
77,624 KB
testcase_05 AC 501 ms
77,812 KB
testcase_06 AC 519 ms
78,156 KB
testcase_07 AC 516 ms
78,020 KB
testcase_08 AC 508 ms
77,788 KB
testcase_09 AC 501 ms
77,904 KB
testcase_10 AC 424 ms
78,248 KB
testcase_11 AC 429 ms
78,592 KB
testcase_12 AC 421 ms
78,032 KB
testcase_13 AC 429 ms
78,220 KB
testcase_14 AC 471 ms
78,760 KB
testcase_15 AC 452 ms
77,868 KB
testcase_16 AC 451 ms
78,512 KB
testcase_17 AC 431 ms
78,028 KB
testcase_18 AC 452 ms
78,816 KB
testcase_19 AC 98 ms
77,448 KB
testcase_20 AC 105 ms
77,656 KB
testcase_21 AC 109 ms
77,604 KB
testcase_22 AC 112 ms
77,276 KB
testcase_23 AC 120 ms
77,412 KB
testcase_24 AC 109 ms
77,712 KB
testcase_25 AC 114 ms
77,168 KB
testcase_26 AC 101 ms
77,296 KB
testcase_27 AC 110 ms
77,628 KB
testcase_28 AC 42 ms
55,108 KB
testcase_29 AC 42 ms
54,484 KB
testcase_30 AC 42 ms
55,928 KB
testcase_31 AC 43 ms
55,032 KB
testcase_32 AC 43 ms
55,236 KB
testcase_33 AC 42 ms
54,356 KB
testcase_34 AC 43 ms
55,440 KB
testcase_35 AC 43 ms
54,980 KB
testcase_36 AC 43 ms
54,364 KB
testcase_37 AC 42 ms
54,444 KB
testcase_38 AC 42 ms
55,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math
def sieve_of_eratosthenes(n):
    prime = [True]*(n+1)
    prime[0] = False
    prime[1] = False
    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n+1):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False
    return prime

p = sieve_of_eratosthenes(31)
num = []
for i in range(len(p)):
    if p[i]:
        num.append(i)

Y = defaultdict(dict)
for i in range(2,32):
    y = i
    for j in num:
        while y%j==0:
            if j in Y[i]:
                Y[i][j] += 1
            else:
                Y[i][j] = 1
            y //= j

T = int(input())
for i in range(T):
    N = int(input())
    X = N
    s = defaultdict(int)
    for j in range(len(num)):
        while X%num[j]==0:
            s[num[j]] += 1
            X //= num[j]
    cnt = 1
    for key in s.keys():
        cnt *= s[key]+1
    for key in Y.keys():
        cnt2 = cnt
        for key2 in Y[key].keys():
            cnt2 //= s[key2]+1
            cnt2 *= s[key2]+Y[key][key2]+1
        if cnt2==cnt*2:
            print(N*key)
            break
0