結果

問題 No.14 最小公倍数ソート
ユーザー titiatitia
提出日時 2021-11-02 17:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,599 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 74,992 KB
最終ジャッジ日時 2024-10-11 22:47:56
合計ジャッジ時間 41,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,584 KB
testcase_01 AC 35 ms
52,716 KB
testcase_02 AC 35 ms
53,184 KB
testcase_03 AC 104 ms
63,840 KB
testcase_04 AC 3,494 ms
74,216 KB
testcase_05 AC 1,305 ms
71,984 KB
testcase_06 AC 1,535 ms
72,516 KB
testcase_07 AC 1,971 ms
72,240 KB
testcase_08 AC 2,548 ms
73,844 KB
testcase_09 AC 3,402 ms
74,688 KB
testcase_10 AC 3,376 ms
74,416 KB
testcase_11 AC 3,458 ms
74,096 KB
testcase_12 AC 3,555 ms
73,928 KB
testcase_13 AC 3,599 ms
74,992 KB
testcase_14 AC 3,323 ms
73,928 KB
testcase_15 AC 3,449 ms
74,204 KB
testcase_16 AC 1,530 ms
73,152 KB
testcase_17 AC 1,105 ms
71,924 KB
testcase_18 AC 566 ms
70,272 KB
testcase_19 AC 2,434 ms
73,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

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)

for tests in range(N-1):
    a=ANS[-1]

    MIN=1<<30
    now=-1
    for i in range(N-1):
        if USE[i]==1:
            continue
        k=lcm(a,X[i])
        if k<MIN:
            MIN=k
            now=i
        if X[i]>=MIN:
            break
    ANS.append(X[now])
    USE[now]=1

print(*ANS)
            
    



0