結果

問題 No.14 最小公倍数ソート
ユーザー colognecologne
提出日時 2022-01-21 12:59:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 1,286 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-11-25 07:32:15
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,092 KB
testcase_01 AC 40 ms
58,200 KB
testcase_02 AC 40 ms
58,228 KB
testcase_03 AC 73 ms
76,060 KB
testcase_04 AC 142 ms
77,140 KB
testcase_05 AC 127 ms
77,456 KB
testcase_06 AC 134 ms
78,016 KB
testcase_07 AC 140 ms
77,316 KB
testcase_08 AC 143 ms
78,336 KB
testcase_09 AC 146 ms
78,168 KB
testcase_10 AC 149 ms
77,828 KB
testcase_11 AC 146 ms
77,792 KB
testcase_12 AC 144 ms
77,992 KB
testcase_13 AC 147 ms
77,920 KB
testcase_14 AC 147 ms
78,284 KB
testcase_15 AC 144 ms
77,444 KB
testcase_16 AC 137 ms
77,440 KB
testcase_17 AC 125 ms
77,680 KB
testcase_18 AC 117 ms
77,236 KB
testcase_19 AC 141 ms
77,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import sys

input = sys.stdin.readline


def main():
    N = int(input())
    *A, = map(int, input().split())

    MAX = 10000
    cnt = [0]*(MAX+1)
    for a in A[1:]:
        cnt[a] += 1

    ptr = list(range(MAX+1))

    def getnxt(x):
        while ptr[x] <= MAX and cnt[ptr[x]] == 0:
            ptr[x] += x

        return ptr[x] if ptr[x] <= MAX else None

    def getmin(v):
        maxv = ans = MAX * MAX
        for i in itertools.count(1):
            if i*i > v:
                return ans

            if v % i == 0:

                n = getnxt(i)
                if n is not None:
                    l = n * (v // i)
                    if maxv > l:
                        maxv = l
                        ans = n
                    elif maxv == l:
                        ans = min(ans, n)

                n = getnxt(v // i)
                if n is not None:
                    l = n * i
                    if maxv > l:
                        maxv = l
                        ans = n
                    elif maxv == l:
                        ans = min(ans, n)

    ans = [A[0]]
    while len(ans) != N:
        ret = getmin(ans[-1])
        ans.append(ret)
        cnt[ret] -= 1

    print(*ans, sep=' ')


if __name__ == '__main__':
    main()
0