結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー ayaoniayaoni
提出日時 2021-07-21 21:55:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,792 KB
最終ジャッジ日時 2024-10-03 02:27:29
合計ジャッジ時間 7,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
76,460 KB
testcase_01 AC 206 ms
76,384 KB
testcase_02 AC 210 ms
76,432 KB
testcase_03 AC 215 ms
76,768 KB
testcase_04 AC 211 ms
76,100 KB
testcase_05 AC 208 ms
76,120 KB
testcase_06 AC 212 ms
76,360 KB
testcase_07 AC 212 ms
76,424 KB
testcase_08 AC 211 ms
76,792 KB
testcase_09 AC 212 ms
76,588 KB
testcase_10 AC 149 ms
76,748 KB
testcase_11 AC 150 ms
76,552 KB
testcase_12 AC 154 ms
76,296 KB
testcase_13 AC 156 ms
76,292 KB
testcase_14 AC 152 ms
76,696 KB
testcase_15 AC 154 ms
76,256 KB
testcase_16 AC 164 ms
76,396 KB
testcase_17 AC 152 ms
76,208 KB
testcase_18 AC 159 ms
76,364 KB
testcase_19 AC 57 ms
68,456 KB
testcase_20 AC 62 ms
69,176 KB
testcase_21 AC 61 ms
68,336 KB
testcase_22 AC 57 ms
67,704 KB
testcase_23 AC 60 ms
69,424 KB
testcase_24 AC 59 ms
68,256 KB
testcase_25 AC 59 ms
68,440 KB
testcase_26 AC 58 ms
68,268 KB
testcase_27 AC 58 ms
68,108 KB
testcase_28 AC 36 ms
53,448 KB
testcase_29 AC 35 ms
53,464 KB
testcase_30 AC 36 ms
52,832 KB
testcase_31 AC 37 ms
52,892 KB
testcase_32 AC 36 ms
53,468 KB
testcase_33 AC 36 ms
53,576 KB
testcase_34 AC 36 ms
52,912 KB
testcase_35 AC 36 ms
53,376 KB
testcase_36 AC 36 ms
53,100 KB
testcase_37 AC 37 ms
53,932 KB
testcase_38 AC 36 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


T = I()
primes = [2,3,5,7,11,13,17,19,23,29,31]
prime_fac = [[0]*11 for _ in range(32)]
for i in range(11):
    p = primes[i]
    for j in range(p,32,p):
        k = j
        count = 0
        while k % p == 0:
            count += 1
            k //= p
        prime_fac[j][i] = count

for _ in range(T):
    N = I()
    index = [0]*11
    for i in range(11):
        M = N
        p = primes[i]
        count = 0
        while M % p == 0:
            count += 1
            M //= p
        index[i] = count
    d = 1
    for i in index:
        d *= i+1

    for i in range(2,32):
        dd = 1
        for j in range(11):
            dd *= index[j]+1+prime_fac[i][j]
        if dd == 2*d:
            print(N*i)
            break
0