結果

問題 No.14 最小公倍数ソート
ユーザー titiatitia
提出日時 2021-11-02 17:58:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,006 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 77,596 KB
最終ジャッジ日時 2024-10-11 22:49:30
合計ジャッジ時間 46,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,784 KB
testcase_01 AC 43 ms
54,308 KB
testcase_02 AC 41 ms
54,308 KB
testcase_03 AC 117 ms
67,244 KB
testcase_04 AC 4,006 ms
77,344 KB
testcase_05 AC 1,402 ms
77,256 KB
testcase_06 AC 1,670 ms
77,388 KB
testcase_07 AC 2,145 ms
77,196 KB
testcase_08 AC 2,830 ms
77,208 KB
testcase_09 AC 3,765 ms
77,400 KB
testcase_10 AC 3,744 ms
77,260 KB
testcase_11 AC 3,693 ms
77,448 KB
testcase_12 AC 3,824 ms
77,320 KB
testcase_13 AC 3,820 ms
77,272 KB
testcase_14 AC 3,725 ms
77,124 KB
testcase_15 AC 3,841 ms
77,448 KB
testcase_16 AC 1,757 ms
77,340 KB
testcase_17 AC 1,310 ms
77,140 KB
testcase_18 AC 662 ms
74,724 KB
testcase_19 AC 2,670 ms
77,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from math import gcd

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

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

ANS=[A[0]]
X=Counter(A[1:])

while X:
    if X[1]!=0:
        ANS.append(1)
        X[1]-=1
        if X[1]==0:
            del X[1]
    else:
        MIN=1<<30
        a=ANS[-1]
        now=-1
        for x in X:
            k=lcm(a,x)
            if k<MIN or (x<now and MIN==k):
                MIN=k
                now=x
        ANS.append(now)
        X[now]-=1
        if X[now]==0:
            del X[now]
print(*ANS)
            
    



0