結果

問題 No.14 最小公倍数ソート
ユーザー titiatitia
提出日時 2021-11-02 18:21:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 927 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 79,548 KB
最終ジャッジ日時 2024-10-11 23:15:38
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,272 KB
testcase_01 AC 43 ms
61,972 KB
testcase_02 AC 44 ms
60,920 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque

def lcm(x,y):
    return x*y//gcd(x,y)

N=int(input())
A=list(map(int,input().split()))

ANS=[A[0]]
X=sorted(A[1:])
USE=[0]*(N-1)

FACS=[[] for i in range(10001)]
DIVS=[[] for i in range(10001)]

x=ANS[-1]
K=[]
for j in range(1,min(100,x+1)):
    if x%j==0:
        K.append(j)
FACS[x]=K

for x in X:
    K=[]
    for j in range(1,min(100,x+1)):
        if x%j==0:
            K.append(j)
    FACS[x]=K
    for k in K:
        DIVS[k].append(x)
        
for i in range(N-1):
    #print(DIVS[:10])
    a=ANS[-1]

    MIN=1<<30
    now=1000000
    
    for k in FACS[a]:
        if len(DIVS[k])==0:
            continue
        l=lcm(DIVS[k][0],a)

        if l<MIN or (l==MIN and DIVS[k][0]<now):
            now=DIVS[k][0]
            MIN=l

    ANS.append(now)

    for k in FACS[now]:
        xx=DIVS[k].index(now)
        DIVS[k].pop(xx)

print(*ANS)
            
    



0