結果

問題 No.14 最小公倍数ソート
ユーザー titiatitia
提出日時 2021-11-02 13:06:09
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 586 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,828 KB
最終ジャッジ日時 2024-10-11 12:08:21
合計ジャッジ時間 61,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 144 ms
67,840 KB
testcase_04 TLE -
testcase_05 AC 1,805 ms
77,184 KB
testcase_06 AC 2,325 ms
77,440 KB
testcase_07 AC 2,824 ms
77,392 KB
testcase_08 AC 3,706 ms
77,312 KB
testcase_09 AC 4,815 ms
77,444 KB
testcase_10 AC 4,776 ms
77,312 KB
testcase_11 AC 4,924 ms
77,440 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 4,976 ms
77,568 KB
testcase_15 TLE -
testcase_16 AC 2,299 ms
77,828 KB
testcase_17 AC 1,711 ms
77,344 KB
testcase_18 AC 857 ms
74,752 KB
testcase_19 AC 3,534 ms
77,308 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:
            if lcm(a,x)<MIN or (x<now and MIN==lcm(a,x)):
                MIN=lcm(a,x)
                now=x
        ANS.append(now)
        X[now]-=1
        if X[now]==0:
            del X[now]
print(*ANS)
            
    



0